Changeset 3338
- Timestamp:
- 03/25/10 16:02:52 (15 years ago)
- Location:
- issm/trunk/src/m/classes/public/plot
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/classes/public/plot/plotdoc.m
r3293 r3338 119 119 disp(' ''scaleruler'': add a scale ruler, ''on'' for default value or [x0 y0 length width numberofticks] where (x0,y0) are the coordinates of the lower left corner'); 120 120 disp(' ''showregion'': show domain in Antarctica on an inset, use ''insetpos'' properties'); 121 disp(' ''visible'': ''off'' to make figure unvisible, default is ''on'''); 121 122 disp(' ''wrapping'': repeat ''n'' times the colormap (''n'' must be an integer)'); 122 123 disp(' ''unit'': by default, in m, otherwise, ''km'' is available'); -
issm/trunk/src/m/classes/public/plot/plotmodel.m
r2819 r3338 39 39 40 40 %Create figure 41 figure(figurenumber),clf; 41 if strcmpi(getfieldvalue(options.list{1},'visible','on'),'off'), 42 F=figure(figurenumber);clf; 43 set(F,'Visible','Off'); 44 else 45 figure(figurenumber),clf; 46 end 42 47 43 48 %Use zbuffer renderer (snoother colors)
Note:
See TracChangeset
for help on using the changeset viewer.