Re: [Paraview] Is vtkSMMultiViewRenderModuleProxy deprecated?

2011-03-01 Thread Alexis Chan
Hi I'm trying to build 2 independent views with the option of independent filtering *and *joined filtering of the same data/object. I want 2 users to use ParaView with independent head-tracking, allow them to independently apply filters to the same dataset, have the option of sharing the filters

Re: [Paraview] Is vtkSMMultiViewRenderModuleProxy deprecated?

2011-03-01 Thread Utkarsh Ayachit
pqVRPNStarter.cxx is only looking at the active view and that too the active view when the plugin was loaded and hence it works only with 1 view. You can access all available views from API on pqApplicationCore::instance()-getServerManagerModel() (findItems). pqServerManagerModel also fires

Re: [Paraview] Is vtkSMMultiViewRenderModuleProxy deprecated?

2011-02-28 Thread Utkarsh Ayachit
What exactly are you trying to do? vtkSMMultiViewRenderModuleProxy is deprecated, but it was never meant to be used directly anyways -- one simply created a view proxy and used it. Which is still true. Simply create multiple RenderView proxies and set ViewPosition and ViewSize properties on them

[Paraview] Is vtkSMMultiViewRenderModuleProxy deprecated?

2011-02-27 Thread Alexis Chan
Hi I am interested in implementing multiple views (multiple interactors and multiple renderers). I think this is a pretty good example for me to follow: http://www.paraview.org/Wiki/Multiple_views But I cannot find vtkSMMultiViewRenderModuleProxy in my clone of the ParaView git repository. Has