I am just starting to learn Paraview and how to interact with it from a Python script (executed in IPython). The tutorial shows how to create a view and render it. Example:
from paraview.simple import *
Cone()
Show()
Render()
The resulting window is non-interactive though. How can I enable basic mouse interactions like rotation and zoom?