|
set_isosurface_visibility.m.html |
|
|
Source file: set_isosurface_visibility.m
|
|
Directory: /Users/rjl/git/rjleveque/clawpack-4.6.3/matlab
|
|
Converted: Mon Jan 21 2013 at 20:16:03
using clawcode2html
|
|
This documentation file will
not reflect any later changes in the source file.
|
function set_isosurface_visibility(p,vstr);
% Internal matlab routine for Clawpack graphics.
if (~ishandle(p))
return;
end;
patch_state = strcmp(get(p,'Tag'),'on');
if (patch_state == 1)
set(p,'Visible',vstr);
else
set(p,'Visible','off');
end;