Re: [Paraview] Does anyone know of a paraview version where Clip Closed Surface actually worked?

2013-01-02 Thread Sebastien Jourdain
I've reported a bug here: http://www.paraview.org/Bug/view.php?id=13764 On Mon, Dec 31, 2012 at 12:02 PM, Robert Akers rob.ak...@gmail.com wrote: In my previous version of paraview (3.10?) Clip Closed Surface sort of worked, however it was hit and miss as to whether you'd get a nice closure

Re: [Paraview] ParaView from git, make fail on OpenSUSE 12.2

2013-01-02 Thread Utkarsh Ayachit
You may want to turn off FFMPEG for starters (by turning of PARAVIEW_ENABLE_FFMPEG cmake variable). Utkarsh On Tue, Jan 1, 2013 at 8:14 PM, Pei-Ying Hsieh phsieh2...@yahoo.com wrote: Dear ParaView experts, I just got the latest Paraview source code from git and tried to compile on OpenSUSE

Re: [Paraview] How to change the Representation within a Plugin ?

2013-01-02 Thread Utkarsh Ayachit
Try calling the following before src-updatePipeline() before attempting to create the representation. The reader hasn't been executed yet and hence it doesn't provide any information about what type of data it will produce and hence createDataRepresentation() cannot create any data-representation

[Paraview] Connecting glyph filter with data

2013-01-02 Thread Michael Reuter
Hi, I have a plugin which I'm trying to get working in ParaView 3.98. The source code for the plugin can be found here: http://github.com/mantidproject/mantid/blob/6315_build_pv_398/Code/Mantid/Vates/ParaviewPlugins/ParaViewReaders/PeaksReader/vtkPeaksReader.cxx.

Re: [Paraview] Display integration point centered data

2013-01-02 Thread Burlen Loring
Hi Eduardo, You could visualize data on quadrature points, see http://www.vtk.org/Wiki/File:VTK-Quadrature-Point-Design-Doc.pdf for some details. There is a ctest that demonstrates the functionality, and those filters are found in ParaView. There may be some newer features that I don't know

Re: [Paraview] ParaView from git, make fail on OpenSUSE 12.2

2013-01-02 Thread Pei-Ying Hsieh
Hi, Utkarsh, Thanks for the reply! make was successful when I turned off ffmpeg.  But, I got segmention fault when I ran paraview. ERROR: In /home/phsieh/projects/ParaView/ParaView/VTK/GUISupport/Qt/vtkEventQtSlotConnect.cxx, line 68 vtkEventQtSlotConnect (0x1c82420): Cannot connect NULL

Re: [Paraview] ParaView from git, make fail on OpenSUSE 12.2

2013-01-02 Thread Utkarsh Ayachit
Is this a debug build? If so, can you attach a debugger and post the stack trace? Utkarsh On Wed, Jan 2, 2013 at 1:36 PM, Pei-Ying Hsieh phsieh2...@yahoo.com wrote: Hi, Utkarsh, Thanks for the reply! make was successful when I turned off ffmpeg. But, I got segmention fault when I ran

Re: [Paraview] ParaView from git, make fail on OpenSUSE 12.2

2013-01-02 Thread Pei-Ying Hsieh
Hi, Utkarsh, No, this is a release build.  I do not know how to attach the debugger and the stack trace. Pei-Ying From: Utkarsh Ayachit utkarsh.ayac...@kitware.com To: Pei-Ying Hsieh phsieh2...@yahoo.com Cc: paraview paraview@paraview.org Sent: Wednesday,

Re: [Paraview] ParaView from git, make fail on OpenSUSE 12.2

2013-01-02 Thread Utkarsh Ayachit
Do you know what version of Qt you built ParaView with? On Wed, Jan 2, 2013 at 2:20 PM, Pei-Ying Hsieh phsieh2...@yahoo.com wrote: Hi, Utkarsh, No, this is a release build. I do not know how to attach the debugger and the stack trace. Pei-Ying From:

Re: [Paraview] How to change the Representation within a Plugin ?

2013-01-02 Thread Christian Richter
Thank you Utkarsh, thas does the trick. Can you give me a hint how I can do DataRepresentation1.RadiusArray = [None, 'radius'] //python trace in C++ ? Thanks, Christian Zitat von Utkarsh Ayachit utkarsh.ayac...@kitware.com: Try calling the following before src-updatePipeline() before

Re: [Paraview] Connecting glyph filter with data

2013-01-02 Thread Utkarsh Ayachit
Michael, In vtkPeaksReader::RequestData, instead of glyphFilter-SetSourceData(sphere-GetOutput()), do EITHER glyphFilter-SetSourceConnection(sphere-GetOutputPort()) OR sphere-Update() glyphFilter-SetSourceData(sphere-GetOutput()) Unlike the old SetInput()/SetSource() methods,

[Paraview] Question about Paraview and parallel processing

2013-01-02 Thread Adam Larios
To whom it may concern, I have some data which takes on different values in space, which normally would be easy to view in Paraview. The problem is that the space (which is a big cube) is decomposed into different subdomains since the data was processed in parallel, and each subdomain is

Re: [Paraview] Connecting glyph filter with data

2013-01-02 Thread Reuter, Michael A.
Hi Utkarsh, I love one line changes. Works like a charm. Thanks, M On 1/2/13 3:09 PM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Michael, In vtkPeaksReader::RequestData, instead of glyphFilter-SetSourceData(sphere-GetOutput()), do EITHER

Re: [Paraview] ParaView from git, make fail on OpenSUSE 12.2

2013-01-02 Thread Pei-Ying Hsieh
Hi, Utkarsh, I am using Qt-4.8.1 on OpenSUSE 12.2 64 bit. Pei-Ying From: Utkarsh Ayachit utkarsh.ayac...@kitware.com To: Pei-Ying Hsieh phsieh2...@yahoo.com Cc: paraview paraview@paraview.org Sent: Wednesday, January 2, 2013 2:35 PM Subject: Re: [Paraview]