Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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