Paraview Python plot frozen with Render
New users of Paraview’s Python interface may be perplexed that all the example plots are frozen.
This is because the examples use Render()
, which creates a vestigial feature that is frozen.
To make the example plots interactive, use Interact()
instead.
Python Paraview example:
from paraview.simple import *
s = Sphere()
Show()
Interact()