Changeset 9771
- Timestamp:
- 09/12/11 10:44:05 (14 years ago)
- Location:
- issm/trunk/src/m/model/plot
- Files:
-
- 2 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/model/plot/plot_highlightvertices.m
r9768 r9771 1 function plot_highlight nodes(md,options,width,i);2 %PLOT_HIGHLIGHT GRIDS - plot selected nodes1 function plot_highlightvertices(md,options,width,i); 2 %PLOT_HIGHLIGHTVERTICES - plot selected vertices 3 3 % 4 4 % Usage: 5 % plot_highlight nodes(md,options,width,i);5 % plot_highlightvertices(md,options,width,i); 6 6 % 7 7 % See also: PLOTMODEL … … 40 40 %apply options 41 41 if ~exist(options,'highlight') 42 disp('highlight nodes warning : highlight option empty, not node highlighted');42 disp('highlightvertices warning : highlight option empty, not node highlighted'); 43 43 end 44 44 options=addfielddefault(options,'title','Highlighted Nodes'); -
issm/trunk/src/m/model/plot/plot_manager.m
r9684 r9771 62 62 plot_elementstype(md,options,subplotwidth,i); 63 63 return; 64 case ' nodenumbering',65 plot_ nodenumbering(md,options,subplotwidth,i);64 case 'vertexnumbering', 65 plot_vertexnumbering(md,options,subplotwidth,i); 66 66 return; 67 67 68 case 'highlight nodes',69 plot_highlight nodes(md,options,subplotwidth,i);68 case 'highlightvertices', 69 plot_highlightvertices(md,options,subplotwidth,i); 70 70 return; 71 71 case {'basal_drag','basal_dragx','basal_dragy'}, -
issm/trunk/src/m/model/plot/plot_vertexnumbering.m
r9768 r9771 1 function plot_ nodenumbering(md,options,width,i);2 %PLOT_ GRIDNUMBERING - plot nodenumbering1 function plot_vertexnumbering(md,options,width,i); 2 %PLOT_VERTEXNUMBERING - plot vertex numbering 3 3 % 4 4 % Usage: 5 % plot_ nodenumbering(md,options,width,i);5 % plot_vertexnumbering(md,options,width,i); 6 6 % 7 7 % See also: PLOTMODEL … … 9 9 %process data and model 10 10 [x y z elements is2d isplanet]=processmesh(md,[],options); 11 [ nodenumbers datatype]=processdata(md,[1:md.mesh.numberofvertices]',options);11 [vertexnumbers datatype]=processdata(md,[1:md.mesh.numberofvertices]',options); 12 12 13 13 %plot -
issm/trunk/src/m/model/plot/plotdoc.m
r9684 r9771 22 22 disp(' - ''elements_type'': model used for each element'); 23 23 disp(' - ''elementnumbering'': numbering of elements'); 24 disp(' - '' nodenumbering'': numbering of nodes');24 disp(' - ''vertexnumbering'': numbering of vertices'); 25 25 disp(' - ''highlightelements'': to highlight elements to highlight the element list'); 26 disp(' - ''highlight nodes'': to highlight nodes (use highlight option to enter the nodelist');26 disp(' - ''highlightvertices'': to highlight vertices (use highlight option to enter the vertex list'); 27 27 disp(' - ''mesh'': draw mesh using trisurf'); 28 28 disp(' - ''riftvel'': velocities along rifts');
Note:
See TracChangeset
for help on using the changeset viewer.