ParaView/Python/Visibility

From KitwarePublic
< ParaView
Revision as of 18:37, 16 October 2018 by JPouderoux (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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]