Re: [Paraview] Newbie question

2011-07-11 Thread Sebastien Jourdain
Hi Tom, You started well in the sense that the main page of ParaViewWeb is here: http://www.paraview.org/Wiki/ParaViewWeb Although, setting up a web server that use ParaView to generate interactive 3D content requires to build the tools and most of its dependency. On Unix type platform (Linux, Ma

[Paraview] Pick Center in Full Screen View

2011-07-11 Thread Aurélien Marsan
Dear all, How do you handle the change of the center of rotation for the view when using the full screen mode ? Is there any magic shortcut that does the job of the "pick center" button ? Thanks, A.Marsan ___ Powered by www.kitware.com Visit other Kit

Re: [Paraview] Pick Center in Full Screen View

2011-07-11 Thread Utkarsh Ayachit
Sorry, there's no such shortcut. Youll have to switch out of fill screen mode. Utkarsh Sent from my iPad On Jul 11, 2011, at 10:13 AM, Aurélien Marsan wrote: > Dear all, > > How do you handle the change of the center of rotation for the view when > using the full screen mode ? > Is there a

Re: [Paraview] Histogram Question

2011-07-11 Thread Utkarsh Ayachit
Try applying the Threshold filter to remove all points outside your range of interest and then apply the histogram filter to the result of the threshold filter. Utkarsh Sent from my iPad On Jul 5, 2011, at 11:18 PM, Ari Adland wrote: > I apologize in advance if the answer to this question

Re: [Paraview] Weird boost error during ccmake

2011-07-11 Thread Marcus D. Hanwell
On Fri, Jul 1, 2011 at 10:02 PM, Cook, Rich wrote: > I got this error.  I hope it's obvious why I think it's weird.  I'm building > against boost 1.46.  Or thought I was.  This message seems to imply it's > looking at the system boost in /usr/include/boost > >  Your system is using an outdated v

Re: [Paraview] Weird boost error during ccmake

2011-07-11 Thread Cook, Rich
That's why I thought it peculiar. I have the same thing (note I've renamed a directory from 3.10 to 3.11): rcook@edge83 (blockbuster): grep BOOST_LIB_VERSION /nfs/tmp2/rcook/ParaView/3.11/build/boost_1_46_1/boost/version.hpp // BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSI

Re: [Paraview] Weird boost error during ccmake

2011-07-11 Thread Marcus D. Hanwell
If you look in your CMakeCache.txt do you see a Boost_VERSION variable set in there? That can override what is in the actual header. Marcus On Mon, Jul 11, 2011 at 4:11 PM, Cook, Rich wrote: > That's why I thought it peculiar. > I have the same thing  (note I've renamed a directory from 3.10 to

Re: [Paraview] Remove Input Connections

2011-07-11 Thread Utkarsh Ayachit
Try this: Add an attribute clean_command="RemoveAllInputs" to the Input property. (look at the XML for Append filter in filters.xml ). Utkarsh Sent from my iPad On Jul 8, 2011, at 8:58 AM, Jorge Peña wrote: > Hi all, > > I have being trying to remove an input from a filter with multi-inputs

Re: [Paraview] vtkSMProperty and vtkSet

2011-07-11 Thread Utkarsh Ayachit
Not sure I understand the question. Can you elaborate please? Utkarsh Sent from my iPad On Jun 30, 2011, at 8:41 AM, papa ndéné NDIAYE wrote: > Hi all, > > I have a GUI that builds extract block filters and want to modify the > BlockIndices property in it. > I got the thing about indices but

Re: [Paraview] Weird boost error during ccmake

2011-07-11 Thread Cook, Rich
Yes, it says: Boost_LIB_VERSION:INTERNAL=1_33_1 Boost_VERSION:INTERNAL=103301 On Jul 11, 2011, at 1:23 PM, Marcus D. Hanwell wrote: > If you look in your CMakeCache.txt do you see a Boost_VERSION variable > set in there? That can override what is in the actual header. > > Marcus > > On Mon,

Re: [Paraview] Remove Input Connections

2011-07-11 Thread Jorge Peña Pastor
I already did that. The point is that my algorithm can work in an incremental way, so I had to add some supporting data structures to manage new connections when previous were removed by the RemoveAllInputs command. Thanks anyway. El 11/07/2011, a las 22:27, Utkarsh Ayachit escribió: > Try t

Re: [Paraview] Interesting bug when using windbladereader and multiple time steps

2011-07-11 Thread Sohail Shafii
Hi, There is actually another bug (which may or may not be related) which did not happen before with ParaView 3.8.0 but appears with the release branch of the ParaView that I am using.  If I load a wind data set after connecting to 2-process localhost (mpirun -np 2 pvserver), the gradient of un

Re: [Paraview] Weird boost error during ccmake

2011-07-11 Thread Marcus D. Hanwell
Is this a fresh build tree? Is it possible that it is picking up a system Boost first time around? You could delete this entry and re-run CMake, but it looks like a caching issue to me (I am guessing you have 1.33.1 somewhere, and it gets picked up on the first CMake invocation). Hope that helps.