source: issm/branches/trunk-jpl-damage/src/m/model/plot/plot_none.m@ 12194

Last change on this file since 12194 was 8420, checked in by Mathieu Morlighem, 14 years ago

Added 2 options and plot none really plots nothing

File size: 471 bytes
Line 
1function plot_none(md,options,nlines,ncols,i);
2%PLOT_NONE - plot nothing, just apply options
3%
4% Usage:
5% plot_mesh(md,options,nlines,ncols,i);
6%
7% See also: PLOTMODEL
8return;
9
10options=addfielddefault(options,'colorbar','none');
11options=addfielddefault(options,'map','none');
12options=addfielddefault(options,'axis','equal');
13
14if exist(options,'overlay'),
15 plot_overlay(md,'none',options,nlines,ncols,i);
16 return;
17end
18
19%apply options
20applyoptions(md,[],options);
Note: See TracBrowser for help on using the repository browser.