ParaView/Python/Visibility
From KitwarePublic
< ParaView
Jump to navigationJump to search
Revision as of 18:37, 16 October 2018 by JPouderoux (talk | contribs)
<source lang="python">
- !/usr/bin/pvpython
from paraview.simple import *
- Create some sources ...
- Hide all sources
for px in GetSources().values():
Hide(px)
</source>
Back to ParaView/PythonRecipes.