Re: [Paraview] particletracer

2009-02-19 Thread John Biddiscombe
Martin 4. Selecting my dataset go to filters and particletracer. In the new window I'm choosing 'source' as input port. Under 'select source(s)' I'm holding down the shift key and click on temporal cache and line. Then I click OK. WRONG! The input is the termporal data (Temporal Cache)

Re: [Paraview] Mesh edition / modification with paraview

2009-02-19 Thread Cyril Giraudon
Thanks a lot for this response Berk. I will think about it. Not easy apparently. The structured mesh edition (for FDTD purpose) is a particular task, and no library exists :-(. I envisage to write an app based upon paraview, I need Paraview's large data handling capability. Cheers, Cyril

Re: [Paraview] Parallel VTK

2009-02-19 Thread Utkarsh Ayachit
FYI, the [ParaView] in the subject line is added automatically by the mailing list, you don't have to add it explicitly. On Wed, Feb 18, 2009 at 1:58 PM, Samuele Zampini lelelel...@libero.it wrote: Hi all, I am trying to use this database (actually, I am attaching just an example) with the

Re: [Paraview] Changing the default volume mapper in Paraview?

2009-02-19 Thread Utkarsh Ayachit
I know it's kind of hacky, but you can simply edit the XML file and change the mapper used. Look at Servers/ServerManager/Resources/rendering.xml. In the XML for UniformGridVolumeRepresentation change FixedPointVolumeRayCastMapper to something else. Then after the definition for

Re: [Paraview] VTK 5.4 Release (Please Read!)

2009-02-19 Thread Olesen, Mark
After 5.4 is released, can we expect (hope) for a move from CVS to git or subversion? /mark -Original Message- From: paraview-boun...@paraview.org [mailto:paraview-boun...@paraview.org] On Behalf Of Bob Obara Sent: Monday, January 19, 2009 8:13 PM To:

Re: [Paraview] Getting proxy names from proxy manager.

2009-02-19 Thread Utkarsh Ayachit
The cout is never shown since GetProxyName() returns 0 for the second time around. A cleaner alternative would be to use the vtkSMProxyIterator to iterate over a group (using iter-Begin(sources)). Utkarsh On Wed, Feb 11, 2009 at 4:29 PM, Juan Fernando Duque Lombana jduqu...@eafit.edu.co wrote:

Re: [Paraview] Visualizing histogram

2009-02-19 Thread pat marion
Hi, Sorry I missed this email until now. I have some python code that demonstrates how to use the new vtk based charts and vtkTable. Using this python interface it should be possible to save a screenshot of the barchart or XY plot. I have the code as a patch but it won't be committed until

Re: [Paraview] Emissive polygons?

2009-02-19 Thread Berk Geveci
I am probably confused here but isn't setting ambient to larger than 0 in vtkProperty supposed to do that? -berk On Wed, Feb 18, 2009 at 4:23 PM, Moreland, Kenneth kmo...@sandia.gov wrote: I'm afraid not. It looks like that functionality is not even support in VTK. Implementing light

Re: [Paraview] Extract cell type from unstructured grid

2009-02-19 Thread Berk Geveci
And then use the Cell Types array in the Threshold filter, I guess? -berk On Wed, Feb 18, 2009 at 11:55 AM, Moreland, Kenneth kmo...@sandia.gov wrote: Paul, I don't know of any existing filter to do that, but a pretty simple programmable filter can do it. Here is the script that will

Re: [Paraview] Changing the default volume mapper in Paraview?

2009-02-19 Thread pat marion
There is a combo box in the Display tab that allows you to select the volume mapper, but it looks like that combo box is not working. I know it used to work, does anyone know what happened? Pat On Thu, Feb 19, 2009 at 7:38 AM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: I know it's kind

Re: [Paraview] Parallel VTK

2009-02-19 Thread Samuele Zampini
Dear Berk, I've switched from source to Source but nothing happened. Better, I get a crash, now, instead of an error message. Any other idea? Thanks, Samuele. Il giorno gio, 19/02/2009 alle 09.41 -0500, Berk Geveci ha scritto: Hi Samuele, As you can see in the error, the pvtr file is

Re: [Paraview] Changing the default volume mapper in Paraview?

2009-02-19 Thread Utkarsh Ayachit
The combo-box is only for unstructured volume rendering (and works perfectly fine for that). I believe Biao is taking about image data volume rendering. Utkarsh On Thu, Feb 19, 2009 at 10:06 AM, pat marion pat.mar...@kitware.com wrote: There is a combo box in the Display tab that allows you to

[Paraview] AnatomicaOrientation and TransformMatrix

2009-02-19 Thread David Fuentes
The TransformMatrix and AnatomicalOrientation seem to have no effect on the positioning of the data in an MHA file within paraview TransformMatrix = 1 0 0 0 1 0 0 0 1 AnatomicalOrientation = RAI shouldn't TransformMatrix = 1 0 0 0 0 1 0 1 0 produce a 90 deg rotation about the x-axis

Re: [Paraview] Emissive polygons?

2009-02-19 Thread Moreland, Kenneth
No, they are different (although you might be able to get a similar effect). The ambient light represents a base level of lighting coming from all directions that is formed (in real life) by light coming actual light sources and bouncing around the objects in the room. It is the light that

[Paraview] Extracting data

2009-02-19 Thread Rakesh Hammond
Hi I have a multi-block time series data set (23 blocks). I select some blocks (0,6,12,18) using extractBlock filter. I then use the plot over line to plot some variables in my selected blocks. If i wanted to save the extracted blocks, i can save as a *.vtm file. However, it only saves the

Re: [Paraview] Changing the default volume mapper in Paraview?

2009-02-19 Thread Biao She
I didn't add a new proxy definition for OpenGLVolumeTextureMapper3D. Instead, I change the definition for VolumeFixedPointRayCastMapper to something like that: SubProxy Proxy name=VolumeFixedPointRayCastMapper proxygroup=mappers proxyname=OpenGLVolumeTextureMapper3D

Re: [Paraview] Changing the default volume mapper in Paraview?

2009-02-19 Thread Biao She
Sorry, please ignore the first question. I know what you mean right now. But, please look at the second question: Also, I notice that in the vtkSMUniformGridVolumeRepresentationProxy.cxx file (Servers/ServerManager/), between line 100~117, there are some code specifically related to

Re: [Paraview] Changing the default volume mapper in Paraview?

2009-02-19 Thread Utkarsh Ayachit
No, unless you changed the name for the subproxy which is the name in SubProxyProxy name=.. //SubProxy. I'll leave that as is so the vtkSMUniformGridVolumeRepresentationProxy will just work. On Thu, Feb 19, 2009 at 4:33 PM, Biao She sheb...@gmail.com wrote: Sorry, please ignore the first

Re: [Paraview] Changing the default volume mapper in Paraview?

2009-02-19 Thread Biao She
Thanks very much for your help, Utkarsh. The OpenGLVolumeTextureMapper3D works right now. Just for future reference, here are instructions to make a volume mapper available in paraview: 1. open the rendering.xml file at the /$Paraveiw-Source-Directory/Servers/ServerManager/Resources directory. 2.

[Paraview] Change reader file name in python loaded state

2009-02-19 Thread Eric E. Monson
Hey again, Back maybe around PV 3.2, I could load a state file in Python (outside of PV) which included readers for pvd files. I could find the proxies for the file readers, and then change the file name, update the pipeline, and then save or display an animation using the new data set.