Dear all,
I started with a simple python scripting example as described in this paragraph:
http://www.paraview.org/Wiki/ParaView/Python_Scripting#Rendering

Unfortunately I don't see any possibility to interact with the render window 
using the mouse (to rotate the camera, zoom, pan, ...) as I did before in C++:

...
// an interactor
vtkRenderWindowInteractor *iren = vtkRenderWindowInteractor::New();
iren->SetRenderWindow(renWin);
// add actors
ren1->AddActor(...);
// render an image
renWin->Render();
// begin mouse interaction
iren->Start();

Is it possible to use mouse interaction in combination with python scripting?

Thanks
Lars




_______________________________________________
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview

Reply via email to