[Paraview] View control with Python

2012-03-19 Thread Magician
Hi. Now I'm trying to control ParaView's camera angle with Python. I could get Active Camera object by GetActiveCamera() and try SetPosition() etc. But I Couldn't find function as Center of Rotation on Adjust Camera panel. How can I control it with Python? And also I want to get a ParaView's

Re: [Paraview] View control with Python

2012-03-19 Thread Utkarsh Ayachit
But I Couldn't find function as Center of Rotation on Adjust Camera panel. How can I control it with Python? Try: view = GetActiveView() view.CenterOfRotation = [0, 0, 0] And also I want to get a ParaView's Python reference. We can find scripting tutorials on Users' Guide or Wiki, but