Re: [Paraview] Turn vtk Data Object into DataObjectProxy

2010-09-13 Thread Biddiscombe, John A.
Andy I'm not sure if it will work but maybe using vtkTrivialProducer might do it for you with SetOutput(). Thanks but ...My problem is primarily, how to take the concrete vtk dataset and attach it to a proxy. Each node should have the same Id for the dataset so that the pipeline operates

Re: [Paraview] Calculator Filter -- Gradient

2010-09-13 Thread Aurélien Marsan
Hello, In order to calculate a new scalar (here for a multiblockdataset) pdi = self.GetInput() pdo = self.GetOutput() pdo.ShallowCopy(pdi) for block in output[0]: if block.GetNumberOfPoints() != 0: array = block.PointData['Q1'] / block.PointData['Q2'] block.PointData.append(array, 'newQ')

Re: [Paraview] SurfaceLIC plugin does not get built

2010-09-13 Thread Dave Partyka
I believe that plugin only gets built when the client gui is enabled. On Mon, Sep 13, 2010 at 4:47 AM, Van Mierlo K. k...@soton.ac.uk wrote: Hi, I have compiled pvserver (3.8.0) with openmpi to run on the university cluster. I have set the surfaceLIC plugin to ‘on’ during configuration

Re: [Paraview] further documentation for extra plugins

2010-09-13 Thread Utkarsh Ayachit
Unfortunately, currently there's no more documentation for the plugins. The placeholders on the Wiki are exactly where we plan to add more information about the plugins. Utkarsh On Fri, Sep 10, 2010 at 3:42 PM, Dan Lussier dan.luss...@sjc.ox.ac.uk wrote: I was wondering if there was a central

Re: [Paraview] further documentation for extra plugins

2010-09-13 Thread Dan Lussier
Ok - thanks. Definitely makes it more difficult to use the bundled plugins. Perhaps documentation should be required before a plugin is bundled in w the PV distribution. On Mon, Sep 13, 2010 at 8:20 AM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Unfortunately, currently there's no

Re: [Paraview] SurfaceLIC plugin does not get built

2010-09-13 Thread Utkarsh Ayachit
Dave, Is that indeed the case? In which case that's a bug. We need to fix it so that the plugin build w/o the client gui. Can you take a look please? Thanks, Utkarsh On Mon, Sep 13, 2010 at 8:58 AM, Dave Partyka dave.part...@kitware.com wrote: I believe that plugin only gets built when the

Re: [Paraview] Add logo to animation

2010-09-13 Thread Michael Müller
Thanks for your reply, Utkarsh. Works perfectly! Michael -Ursprüngliche Nachricht- Von: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com] Gesendet: Montag, 13. September 2010 15:38 An: Michael Müller Cc: Carolyn Stancoff; paraview@paraview.org Betreff: Re: [Paraview] Add logo to

Re: [Paraview] SurfaceLIC plugin does not get built

2010-09-13 Thread Dave Partyka
Can do. On Mon, Sep 13, 2010 at 9:44 AM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Dave, Is that indeed the case? In which case that's a bug. We need to fix it so that the plugin build w/o the client gui. Can you take a look please? Thanks, Utkarsh On Mon, Sep 13, 2010 at

[Paraview] modpython:25: DeprecationWarning: integer argument expected, got float

2010-09-13 Thread Aurélien Marsan
Good Afternoon, I produce a dataset with timestep, looking at http://www.vtk.org/Wiki/Here_are_some_more_examples_of_simple_ParaView_3_python_filters . It works well, but at the first time I use my Reader, just after having launched Paraview, it displays me this message : modpython:25:

Re: [Paraview] contour plot

2010-09-13 Thread Utkarsh Ayachit
Not currently. But that sounds like a nice feature. Feel free to add it to http://paraview.uservoice.com/ . If there's enough interest in the feature, we can try to add support for it. There's of course the non-automatic way of create text labels explicitly (using Sources | Text source). Utkarsh

Re: [Paraview] transparent background

2010-09-13 Thread Utkarsh Ayachit
Nope, it's not possible to save transparent backgrounds. However, it should be too hard to use another tool afterwords to set the transparent color for the png. Utkarsh 2010/9/13 Stephane PLOIX stephane.pl...@edf.fr Hi, I am trying to save a screenshot with transparent background. To do

Re: [Paraview] Turn vtk Data Object into DataObjectProxy

2010-09-13 Thread Biddiscombe, John A.
Andy You got me looking in the right direction and I found this is what I wanted this-TrivialProducer = pxm-NewProxy(sources, TrivialProducer); vtkTrivialProducer::SafeDownCast(this-TrivialProducer-GetClientSideObject())-SetOutput(ds); thanks JB From: Andy Bauer

[Paraview] Fwd: contour plot

2010-09-13 Thread Utkarsh Ayachit
That's a nice solution. I am forwarding it to the list. Utkarsh -- Forwarded message -- From: Tim Mardall t...@mardall.info Date: Mon, Sep 13, 2010 at 12:31 PM Subject: Re: [Paraview] contour plot To: Utkarsh Ayachit utkarsh.ayac...@kitware.com Hello, Try doing a slice

Re: [Paraview] transparent background

2010-09-13 Thread Sebastien Jourdain
Hi Stephane, On the VTK side which might be able to be done in the scripting layer of ParaView also (but not sure), you will need 2 things: 1) tell the render window to send alpha : view-GetRenderWindow()-SetAlphaBitPlanes(1); 2) request the Alpha value on the window capture filter :

Re: [Paraview] dynamically rescaling the color map

2010-09-13 Thread Utkarsh Ayachit
Go to Edit | Settings. In the General settings page, there's an option for Rescale Data Range Mode. Choose Grow every timestep. That should update the range is the scalar range grows beyond the current LUT range. Utkarsh On Thu, Sep 9, 2010 at 8:15 PM, Keith D. Matthews ke...@alice.caltech.edu

[Paraview] Qt library install question

2010-09-13 Thread Dan Lussier
When I import the paraview Python module from a regular Python interpreter, I get a slew of warning messages like: objc[31181]: Class QNSImageView is implemented in both /opt/local/libexec/qt4-mac/lib/QtGui.framework/Versions/4/QtGui and /.. other directories ...

Re: [Paraview] VTK files with only points

2010-09-13 Thread Sebastien Jourdain
Unstructured grid needs cells even though you are only interested in points. You will have to create one cell per point or one cell that refer each point. VTK_VERTEX or VTK_POLY_VERTEX. You can check the following document to see what I mean by Cell. Seb

Re: [Paraview] Qt library install question

2010-09-13 Thread Michael Jackson
That will most likely cause problems running paraview. You really want to make sure you consistently build and load against the same set of Qt Libraries. It looks like your Qt installations do NOT have an install_name that contains the absolute path to the Qt frameworks so setting

Re: [Paraview] dynamically rescaling the color map

2010-09-13 Thread Moreland, Kenneth
If it's at all possible, I highly recommend not using the Grow every timestep option if at all possible. Rescaling the color map dynamically as the scalar evolves yields quite misleading visualization even when you are aware it is happening and show how the range changes. I would instead set

Re: [Paraview] Qt library install question

2010-09-13 Thread Dan Lussier
Here is the result: % otool -L /opt/local/libexec/qt4-mac/lib/QtGui.framework/Versions/4/QtGui /opt/local/libexec/qt4-mac/lib/QtGui.framework/Versions/4/QtGui: /opt/local/libexec/qt4-mac/lib/QtGui.framework/Versions/4/QtGui (compatibility version 4.6.0, current version 4.6.3)

Re: [Paraview] mapping unstructured grid onto regular grid

2010-09-13 Thread Dan Lussier
Ok - that's great. I was able to see how that works with some playing around at the interactive prompt. How does this approach using vtkShepardMethod compare to the sampling probes that are included with the pv-meshless plugin ? I noticed that they produce an output called Shepard, but wasn't