[Paraview] Image Mathematics

2011-03-29 Thread Jérôme
Dear all, I am trying to embed the vtkImageMathematics filter in ParaView, but I have a pipeline issue (attached are the corresponding XML servermanagers). For one input operations (add K, invert, sin, cos,...) everything works well. But for two inputs operations (Add, Multiply, Min, Max,...) the

Re: [Paraview] Shortcut for toggling orthographic projection?

2011-03-29 Thread Paul Melis
Hi David, Thanks for the tip. I just noticed the little Edit View Options button just above a view and that also gives quick(er) access to the projection setting. Regards, Paul On 03/25/2011 06:53 PM, David E DeMarle wrote: Does python trace capture that? If so, you can make a macro for

Re: [Paraview] ANN: Upcoming changes to ParaView Server Manager

2011-03-29 Thread Sebastien Jourdain
Hi Takuya, I'm glad that you gave a try and you managed to make your plugin work. Moreover, thanks for that cheat sheet. Here is my feedback about it: OLD: pxy-Set/GetServers() (where pxy is a vtkSMProxy) NEW: pxy-Set/GetLocation() Yes OLD: pxy-Set/GetConnectionID() NEW:

Re: [Paraview] ANN: Upcoming changes to ParaView Server Manager

2011-03-29 Thread Takuya OSHIMA
Seb, thanks for the clarifications, especially pointing out that Set/GetSession() are redundant. OLD: pm-SendStream(pxy-GetConnectionID(), pxy-GetServers(), stream) NEW: pxy-GetSession()-ExecuteStream(pxy-GetLocation(), stream) (where pm is a vtkProcessModule) Yes, but as you did it

Re: [Paraview] ANN: Upcoming changes to ParaView Server Manager

2011-03-29 Thread Takuya OSHIMA
Sorry I hit send too early: * ParaViewCore/ServerManager/vtkSMDataSourceProxy.{cxx,h} are orphaned  (have no reference from other sources or CMakeLists). Yes, I was planning to remove it. Are you using it ? No. Takuya Takuya OSHIMA, Ph.D. Faculty of Engineering, Niigata University 8050

Re: [Paraview] ANN: Upcoming changes to ParaView Server Manager

2011-03-29 Thread Sebastien Jourdain
Hi Takuya, NEW2: pxy-ExecuteStream(stream) In fact, this is not possible because vtkSMProxy::ExecuteStream() is protected (is this a bug or intended?). It is intended, specially if your are not inside the vtkSMProxy class implementation. It is more a helper method that use the proxy session

Re: [Paraview] Providing block names within .vtm files

2011-03-29 Thread Utkarsh Ayachit
FYI, I've added a feature request for the same:http://public.kitware.com/Bug/view.php?id=12023 Utkarsh On Fri, Mar 25, 2011 at 12:00 PM, Adriano Gagliardi agaglia...@ara.co.uk wrote: Jean, Your fix works fine and pretty simple to implement. Should this be added as a feature request or

Re: [Paraview] Applying filters in sample app

2011-03-29 Thread Utkarsh Ayachit
The plane widget has a setVisiblity slot, you can connect the checkbox to that slot. Utkarsh On Tue, Mar 29, 2011 at 10:16 AM, Reuter, Michael A. reute...@ornl.gov wrote: Hi Utkarsh,  Thank you for the code. It works fine and gets me almost to where I want. When I use the implicit plane with

[Paraview] Make install fails

2011-03-29 Thread Paul Melis
Hi, With a freshly built PV 3.8.1 with CMake 2.8.4 I get (see attachement for full log) this with make install: [...] -- Installing: /home/opti/software/pv381reldebinfo/lib/paraview-3.8/purple-2/perl -- Installing: /home/opti/software/pv381reldebinfo/lib/paraview-3.8/purple-2/perl/auto --

Re: [Paraview] Applying filters in sample app

2011-03-29 Thread Reuter, Michael A.
Thanks for the tip. I got it to connect and work. Cheers, M On 3/29/11 10:56 AM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: The plane widget has a setVisiblity slot, you can connect the checkbox to that slot. Utkarsh On Tue, Mar 29, 2011 at 10:16 AM, Reuter, Michael A.

Re: [Paraview] paraview 3.11, from git, w mpi, Ensight sos

2011-03-29 Thread Ricardo Reis
On Tue, 29 Mar 2011, Robert Maynard wrote: Hi Ricardo, Can you please post your .sos file? - cut here - FORMAT type: master_server gold SERVERS number of servers: 2 #Server 1 machine id: tesla executable: data_path: . casefile: pjet_0001.case #Server 2

Re: [Paraview] paraview 3.11, from git, w mpi, Ensight sos

2011-03-29 Thread Robert Maynard
Hi Ricardo, It will be great if you can post all the ensight files and I will try to replicate the problem. On Tue, Mar 29, 2011 at 1:03 PM, Ricardo Reis rr...@aero.ist.utl.pt wrote: On Tue, 29 Mar 2011, Robert Maynard wrote: Hi Ricardo, Can you please post your .sos file? - cut here

Re: [Paraview] ANN: Upcoming changes to ParaView Server Manager

2011-03-29 Thread Sebastien Jourdain
Hi Folks, I've push some new code in the same stage branch that should fix the plugins (coprocessing, manta, EyeDomLighting...) and some other minor bugs. Sven also provide me some feedback that may be interesting to share: For those with custom readers that internally use FileSeriesReader: *

Re: [Paraview] ANN: Upcoming changes to ParaView Server Manager

2011-03-29 Thread Sebastien Jourdain
Thanks Sven to bring that up, I will look into that tomorrow. Seb On Tue, Mar 29, 2011 at 7:17 PM, Sven Buijssen sven.buijs...@tu-dortmund.de wrote: Hi Seb, http://www.paraview.org/Wiki/ParaView/Plugin_HowTo#Adding_an_object_panel shows a trivial example of how to tweak a panel with some