ParaView/Python/Visibility: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
(New page: <source lang="python"> #!/usr/bin/pvpython from paraview.simple import * # Create some sources ... for px in GetSources().values(): Hide(px) </source>)
 
(No difference)

Revision as of 13:03, 5 January 2011

<source lang="python">

  1. !/usr/bin/pvpython

from paraview.simple import *

  1. Create some sources ...

for px in GetSources().values():

   Hide(px)

</source>