[Paraview] Parametric functions.

2014-09-16 Thread Andrew Maclean
A while back there was a request for something different from the usual sphere source. So I have created an xml file to access the parametric surface functions in ParaView along with a reverse sense programmable filter. It was an interesting exercise that revealed some deficiencies in the

[Paraview] howto move an object depending on actual time

2014-09-16 Thread Florian Bruckner
hello, i would like to create an animation of moving objects using the animation view. unfortunately the positions of the objects stored within the data file are stationary, so i have to manually define the movement anyhow. is there a simple method to archive this using the animation

Re: [Paraview] PV4.1, Custom Dock Widget: How to automatically add a glyph3d filter after loading data ?

2014-09-16 Thread Florian Hoffmann
Dear Utkarsh, thank you very much for your fast reply and the provided example. I compiled PV4.2RC2 from source and just tried to compile your example. Nevertheless I receive a compilation error complaining that the file vtkSMParaViewPipelineControllerWithRendering.h cannot be found. Where

Re: [Paraview] Save Stereo Screenshots with Python

2014-09-16 Thread Magician
Hi all, I’d like to export left and right-eye images with Python. Any ideas? I’m using ParaView 4.1.0 and 4.2 RC1. Magician On Sep 6, 2014, at 19:25, Magician f_magic...@mac.com wrote: Hi all, I want to export screenshots of stereo images with Python. The stereo mode is

Re: [Paraview] howto move an object depending on actual time

2014-09-16 Thread Utkarsh Ayachit
I'd suggest using Programmable Filter instead of Python Calculator. Refer to vtkTimeToTexConvertor::RequestData() [1] for how to access DATA_TIME_STEP value. You can write an equivalent script in Script part for the Programmable Filter to access the time value. Utkarsh [1]

Re: [Paraview] PV4.1, Custom Dock Widget: How to automatically add a glyph3d filter after loading data ?

2014-09-16 Thread Utkarsh Ayachit
It's under ParaVIewCore/ServerManager/Rendering/ in the ParaVIew source[1] Utkarsh [1] https://github.com/Kitware/ParaView/blob/master/ParaViewCore/ServerManager/Rendering/vtkSMParaViewPipelineControllerWithRendering.h On Tue, Sep 16, 2014 at 8:11 AM, Florian Hoffmann

Re: [Paraview] howto move an object depending on actual time

2014-09-16 Thread Florian Bruckner
hi, thanks alot for the fast reply. DATA_TIME_STEP was the variable that i was looking for. here is my Programmable Filter Script that is able to translate an object into a given direction depending on the actual timestep. ### paraview programmable filter script for translation of object

Re: [Paraview] PV4.1, Custom Dock Widget: How to automatically add a glyph3d filter after loading data ?

2014-09-16 Thread Florian Hoffmann
I have the file there as well but nevertheless during compilation of the Plugin it cannot be found. Do you have any idea why this might be the case ? Thanks. Florian Mit freundlichen Grüßen -- Dr.-Ing. Florian Hoffmann inuTech GmbH Phone: +49-(0)911-323843-22 Fuerther

Re: [Paraview] PV4.1, Custom Dock Widget: How to automatically add a glyph3d filter after loading data ?

2014-09-16 Thread Utkarsh Ayachit
Not entirely sure why. I just built that same with ParaVIew git/master and it built fine for me. What OS is this? Can you attach CMakeCache.txt from ParaView build as well as the plugin build? Utkarsh On Tue, Sep 16, 2014 at 11:26 AM, Florian Hoffmann florian.hoffm...@inutech.de wrote: I have

[Paraview] compiling ParaView v4.2.0-RC1-75-gf64ee7a with -DModule_vtkIOXdmf3:BOOL=ON

2014-09-16 Thread Su, Simon M CTR USARMY ARL (US)
Hello, I would like to test out the xdmf3 writer in ParaView 4.2 RC to see if the file size is still increase 10 fold when saving pvd file to xmf format. However, when I configure ParaView v4.2.0-RC1-75-gf64ee7a with -DModule_vtkIOXdmf3:BOOL=ON cmake -DCMAKE_BUILD_TYPE=release

Re: [Paraview] Save Stereo Screenshots with Python

2014-09-16 Thread Aashish Chaudhary
I will look into it (or ping the right people for it). Thanks for reporting it. - Aashish On Tue, Sep 16, 2014 at 8:32 AM, Magician f_magic...@mac.com wrote: Hi all, I’d like to export left and right-eye images with Python. Any ideas? I’m using ParaView 4.1.0 and 4.2 RC1. Magician

Re: [Paraview] compiling ParaView v4.2.0-RC1-75-gf64ee7a with -DModule_vtkIOXdmf3:BOOL=ON

2014-09-16 Thread Ben Boeckel
On Tue, Sep 16, 2014 at 16:22:38 +, Su, Simon M CTR USARMY ARL (US) wrote: I would like to test out the xdmf3 writer in ParaView 4.2 RC to see if the file size is still increase 10 fold when saving pvd file to xmf format. However, when I configure ParaView v4.2.0-RC1-75-gf64ee7a with

[Paraview] Python Scripting - Slicing Data

2014-09-16 Thread Kevin Lau
Dear all, I'm trying to use a Python script to slice a 3D model in multiple locations and interrogate the values at these slices. Is it possible to apply the slice with a plane? I.e. intersect the model with a pre-defined plane? I can load and view my data and a plane I've defined (see below),