ParaView/Python/Visibility

From KitwarePublic
Jump to navigationJump to search

<source lang="python">

  1. !/usr/bin/pvpython

from paraview.simple import *

  1. Create some sources ...
  1. Hide all sources

for px in GetSources().values():

   Hide(px)

</source>

Back to ParaView/PythonRecipes.


ParaView: [Welcome | Site Map]