Re: [Paraview] paraview 3.6.1 - problem with linkage to vtkPlanes at 30%

2009-08-06 Thread Utkarsh Ayachit
Arkadiusz, I haven't been able to reproduce this error so I am not sure what's causing it. I am cc-ing the mailing list to see if some else encountered it and knows how to resolve it. If you aren't already, you may want to subscribe to the mailing list so you don't miss any responses. Utkarsh O

[Paraview] spheres x y z + intensity value text file

2009-08-06 Thread Marc Bletry
Hi, I am trying to make out how to display a set of 1 million spheres of the same radius, knowing their xyz coordinates + a kind of intensity (varying from 1 to 12), something like : 1 0.00 0.00 0.00 0.00 12 2-1.732051 1.00 0.00 0.

Re: [Paraview] How to set up X connection

2009-08-06 Thread Berk Geveci
HI Jess, So X is not running on these machines at all? -berk On Wed, Aug 5, 2009 at 5:34 AM, chew ping wrote: > Hi all, > > i'm am doing parallel rendering using 4 machines, all these machines are > identical to each other (architecture, OS, processor...) > All of them have graphics hardware (re

Re: [Paraview] MultiblockDataSet Global IDs

2009-08-06 Thread Zhanping Liu
Hi Rafael: If my guess is not wrong, I feel you want to obtain a set of unique point ids for each block. Then the following segment of code might be ok. int numPtIds = 0; vtkIdList * ptIdList = vtkIdList::New(); ptIdList->Allocate( 1000, 1000 ); // or better estimated sizes vtkMul

Re: [Paraview] MultiblockDataSet Global IDs

2009-08-06 Thread Andy Bauer
What do you mean by points in common? Do you mean that they come from the same vtkPoints or that they just share the same coordinate values (to within tolerance at least)? If you mean that they share the same coordinate values you can use the vtkIncrementalOctreePointLocator to avoid duplicates.

[Paraview] [PV-3.6.1] Problem compiling with Python in linux x86_64

2009-08-06 Thread Renato Elias
Folks, I'm trouble in compiling PV-3.6.1 in a linux x86_64 environment. The error is: Linking CXX shared library ../../../bin/libvtkPVPythonInterpretor.so /usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../x86_64-suse-linux/bin/ld: /sw/shared/x86_64/Python/2.6.2/lib/libpython2.6.a(abstract.o): re

[Paraview] Absence

2009-08-06 Thread Raphael MARC
Je serai absent(e) du 06/08/2009 au 24/08/2009. ___ 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

Re: [Paraview] Fwd: Baffled by "floating point exceptions" in ParaView 3.6.1

2009-08-06 Thread Randall Hand
Ok, more information. If I compile ParaView without Python and without MPI, it works beautifully. Enabling MPI, however, causes the problem.. a GDB trace: (gdb) run Starting program: /viz/work/rhand/pvezviz/install-MPI/bin/paraview Program received signal SIGFPE, Arithmetic exception. 0x00

Re: [Paraview] spheres x y z + intensity value text file

2009-08-06 Thread Moreland, Kenneth
To answer your question directly, you could write out a csv file. You could read that in and then run the Table To Points filter to get the particles you want. After that, you could run the glyph filter to create the spheres or you could use the point sprite plugin to render them as spheres di

Re: [Paraview] Fwd: Baffled by "floating point exceptions" in ParaView 3.6.1

2009-08-06 Thread j s
Looking online, that is a nasty FPE, since it is a result of an integer operation, not a floating point operation. This is occuring at address NULL, which should not be possible. #8 0x in ?? () It looks like a function at address 0 is being called. Do you have more of the trace,

Re: [Paraview] Fwd: Baffled by "floating point exceptions" in ParaView 3.6.1

2009-08-06 Thread j s
A google search for "0x in ?? ()" and open mpi gets a lot of hits. Juan On Thu, Aug 6, 2009 at 3:55 PM, j s wrote: > Looking online, that is a nasty FPE, since it is a result of an integer > operation, not a floating point operation. > > This is occuring at address NULL, which s

Re: [Paraview] Fwd: Baffled by "floating point exceptions" in ParaView 3.6.1

2009-08-06 Thread Randall Hand
That came from simply "gdb ./paraview", then "run" and "bt" once it died. -- Randall Hand Visualization Scientist http://www.yeraze.com http://www.vizworld.com On Thu, Aug 6, 2009 at 3:55 PM, j s wrote: > Looking online, that is a nasty FPE, since it is a result of an integer > operation, not

Re: [Paraview] Fwd: Baffled by "floating point exceptions" in ParaView 3.6.1

2009-08-06 Thread j s
I'm not sure if a function is being called through a null pointer, or gdb is reporting it for another reason. Something bad is happening in free(), which has nothing to do with numerics, but may have something to do with how your libraries are treating memory. Apparently bt is supposed to give yo

Re: [Paraview] Fwd: Baffled by "floating point exceptions" in ParaView 3.6.1

2009-08-06 Thread j s
You may be able to try setting the environment variable: MALLOC_CHECK_ to 2 and the program should abort on the first instance of heap corruption. Regards, Juan On Thu, Aug 6, 2009 at 4:40 PM, j s wrote: > I'm not sure if a function is being called through a null pointer, or gdb > is reportin

Re: [Paraview] MJPEG instead of MPEG4 (issue 8925)

2009-08-06 Thread Dominik Szczerba
Hi, I get an error during patching and compilating CVS from a few days back: [ 17%] Building CXX object VTK/IO/CMakeFiles/vtkIO.dir/vtkOggTheoraWriter.cxx.o In file included from /home/domel/build/paraview-cvs/VTK/Utilities/vtkoggtheora/include/ogg/os_types.h:139, from /home/

Re: [Paraview] MJPEG instead of MPEG4 (issue 8925)

2009-08-06 Thread Michael Wild
Sorry, simple copy-paste error, fixed it manually in my build tree and then forgot about it ;-) Please try the following patch, if it works I will update the patches on the bug-tracker. diff --git a/VTK/Utilities/vtkoggtheora/CMakeLists.txt b/VTK/Utilities/ vtkoggtheora/CMakeLists.txt ind