[Paraview] pvtu files and Cell Type polyhedron

2012-10-30 Thread Oswald Knoth
I have a pvtu file and two vtu files. If I load Test2.pvtu in to paraview nothing happens. If I load the vtu files separately, I get the desired result. If I change the CellType from 42 to 12 in the vtu files I get the correct output by loading Test2.pvtu. It seems to me that the special cell

Re: [Paraview] Paraview Visualization Ambiguity an a 2nd order Tetrahedra

2012-10-30 Thread Berk Geveci
Merhaba Umut, I would give it a bit more time before compiling ParaView for vector graphics. We are still working on resolving issues and making improvements. We also don't have any documentation yet. I CC'ed David. He is the main developer and can provide some more details. Best, -berk On Wed,

[Paraview] Paraview Visualization Ambiguity an a 2nd order Tetrahedra

2012-10-30 Thread David Lonie
On Tue, Oct 30, 2012 at 10:57 AM, Berk Geveci berk.gev...@kitware.com wrote: Merhaba Umut, I would give it a bit more time before compiling ParaView for vector graphics. We are still working on resolving issues and making improvements. We also don't have any documentation yet. I CC'ed David.

[Paraview] KEYS_TO_COPY method

2012-10-30 Thread Yves Rogez
Hi, I'm trying to implement a self-made plugin in Paraview, using a working VTK filter. This filter sets a key into the information of my output data set /outInfo = output-GetInformation()/ I have to retrieve this key into the RequestData() pass of the connected filter. It works well in

Re: [Paraview] Using VR-Style input devices

2012-10-30 Thread Johannes Zarl
Hello again, Today I tried out the new VR improvements in the master branch. I can tell it's a big improvement over the state-file-hacking. Connecting some tracker input to an object is so much easier (and less error-prone) now! However, some issues remain for me: 1) GUI-Improvements: - It

Re: [Paraview] KEYS_TO_COPY method

2012-10-30 Thread Berk Geveci
Hi Yves, You need to make sure that you are setting the right keys on the right information objects. We use quite a few different information objects so this is confusing at times. You need to set KEYS_TO_COPY() on the request (first argument to RequestData). You need to set the key/value you

[Paraview] Use of glyph inside a C++ filter

2012-10-30 Thread Nehme Bilal
Hello, I am trying to use the glyph filter internally inside another C++ filter. To set a normal property, I just use the associated command as show below: vtkPVGlyphFilter* glyph = vtkPVGlyphFilter::New(); glyph-SetInput(tmpOutput); glyph-SetSource(disk-GetOutput()); glyph-SetScaleMode(1);