|
set_isosurface_visibility.m.html |
|
|
Source file: set_isosurface_visibility.m
|
|
Directory: /home/rjl/git/rjleveque/clawpack-4.x/matlab
|
|
Converted: Sun May 15 2011 at 19:15:58
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;