Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added v0.1 of mrMeshPy #301

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
9 changes: 9 additions & 0 deletions mrBOLD/UI/guimenu/windowMenu.m
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,13 @@
uimenu(winmenu, 'Label', 'Open 3D Window', 'Separator', 'on',...
'CallBack', 'open3DWindow;');

% 3D mrMeshPy submenu. (ADG - Jul2018).
%
%% avoiding this for now so we can get debug info in a terminal window
%%uimenu(winmenu, 'Label', 'Open mrMeshPy 3D Viewer', 'Separator', 'on',...
%% 'CallBack', 'launchMeshPyViewer;');
uimenu(winmenu, 'Label', 'Open mrMeshPy Control Window', ...
'CallBack', 'gui_3dWindow_MeshPy;');


return
2 changes: 1 addition & 1 deletion mrMesh/meshviewer/meshColorOverlay.m
Original file line number Diff line number Diff line change
Expand Up @@ -358,4 +358,4 @@
msh = mrmSet(msh,'colors',newColors');
end

return;
return;
9 changes: 9 additions & 0 deletions mrMeshPy/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#python compile
*.pyc

#matlab in use
*.m~

#mac specific
*.DS_store*

Loading