Re: [Paraview] Problems with the Plot Over Line Filter in PV 3.8.0

2010-06-17 Thread Marcus D. Hanwell
Hi, On Thu, Jun 17, 2010 at 11:06 AM, Natalie Happenhofer < natalieh...@hotmail.com> wrote: > Hi! > > Well, I'm using Windows XP, my graphics card is the Intel 82945G Express > Chipset Family. > > The ParaView I'm using is located on a remote computer with Gentoo Linux, > kernel version 2.6.31-g

Re: [Paraview] vtkGL2PSExporter usage from within Paraview's python shell

2010-06-17 Thread Marcin Sliwowski
Pat, Thanks for the explanation on the proper import and how to get at the local render window. With your help I was able to do what I wanted. I'm not a Paraview user, but I am supporting someone that is and he needed a way to get good looking .ps files out of Paraview. So after some initia

Re: [Paraview] vtkGL2PSExporter usage from within Paraview's python shell

2010-06-17 Thread pat marion
Hi, If you look at paraview's vtk/__init__.py, you'll see: from libvtkRenderingPython import vtkCamera So that is why vtk.vtkGL2PSExporter() doesn't work- the complete vtkRendering kit has not been imported. You could do this: from libvtkRenderingPython import vtkGL2PSExporter exporter = v

Re: [Paraview] Interpolation query

2010-06-17 Thread David E DeMarle
Please respond to the whole list for better service. And a please post a picture so we can see what you mean and better diagnose what is happening. David E DeMarle Kitware, Inc. R&D Engineer 28 Corporate Drive Clifton Park, NY 12065-8662 Phone: 518-371-3971 x109 On Thu, Jun 17, 2010 at 1:53 PM,

Re: [Paraview] vtkGL2PSExporter usage from within Paraview's python shell

2010-06-17 Thread Marcin Sliwowski
Hello Peter, I was king of hoping you would reply, I actually saw that post and your method of instantiating an object on vtkGL2PSExporter does work after I do a from paraview.vtk import * from paraview.vtk import * exp = vtkInstantiator.CreateInstance("vtkGL2PSExporter") I have tried exp.W

Re: [Paraview] ParaView and MILI

2010-06-17 Thread Robert Maynard
Hi, VisIt reader support is provided through the VisItDatabaseBridge plugin. Currently the plugin does not support the MILI format but we are investigating support. On Thu, Jun 17, 2010 at 9:26 AM, Luton, James A CIV NAVSURFWARCENDIV < james.lu...@navy.mil> wrote: > I would like to be able to re

Re: [Paraview] vtkGL2PSExporter usage from within Paraview's python shell

2010-06-17 Thread Peter Brady
Hello Marcin, Your question may have already been answered here: http://markmail.org/message/zd2nwsztxl4xwbhm. However I think the last time I tried this was in 3.4 so things may have changed. In my experience the vtkPostScript writer does a better job although it has been quite a while since I'

Re: [Paraview] Interpolation query

2010-06-17 Thread David E DeMarle
Is the data point or cell aligned? The slice view does not interpolate point centered values across cells like the 3D view does by design. Feel free to add a feature request to the bug tracker if you want to add a mode that allows it to do so. If the data is cell aligned, no views will do interpo

[Paraview] vtkGL2PSExporter usage from within Paraview's python shell

2010-06-17 Thread Marcin Sliwowski
Hello, I am trying to figure out how to save a visualization in Paraview directly to ps/eps format. I have compiled from source paraview 3.6 with the configuration option VTK_USE_GL2PS set to ON. There are many hits in the mailing list archives regarding trying to use vtkGL2PSExporter to

Re: [Paraview] Problems with the Plot Over Line Filter in PV 3.8.0

2010-06-17 Thread Natalie Happenhofer
Hi! Well, I'm using Windows XP, my graphics card is the Intel 82945G Express Chipset Family. The ParaView I'm using is located on a remote computer with Gentoo Linux, kernel version 2.6.31-gentoo-r6. I'm connecting via Putty, using the X11 from Cygwin_NT 5.1. Applying the Plot-Over-Li

Re: [Paraview] Singleton vtkObject multiple SMProxies

2010-06-17 Thread Biddiscombe, John A.
OK. It doesn't work. I misread/understood the Adaptiveoption::getProxy() stuff.. Another question instead : in vtkSMProxy, suppose I attached to vtkObject::ModifiedEvent and tell the proxy to update all values from the vtkObject - which call will tell the proxy that all values need to be reloade

Re: [Paraview] Bug: Paraview 3.8.0 - Animation View - "Use Current" trouble

2010-06-17 Thread Utkarsh Ayachit
That's indeed a bug. I've added a bug report. It should be fixed by the next release. http://public.kitware.com/Bug/view.php?id=10846 Utkarsh On Thu, Jun 17, 2010 at 10:07 AM, Michael Fichera wrote: > Hello, > > > > I’m using Paraview Ver.3.8.0 on Windows Vista 64-bit. In the Animation View, >

Re: [Paraview] exporting VRML files with python script

2010-06-17 Thread Utkarsh Ayachit
Here's a sample script: exporters = servermanager.createModule("exporters") vrml = exporters.VRMLExporter(FileName="/tmp/foo.vrml") vrml.View = GetActiveView() vrml.Write() Utkarsh 2010/6/17 Yann-Hervé Hellouvry : > Hi everyone, > > I am a new user of Paraview and I'm quite interested in usin

Re: [Paraview] Render windows when running parallel pvserver on localhost

2010-06-17 Thread Utkarsh Ayachit
One option is to compile with OSMesa and then use --use-offscreen-rendering command line option for the pvserver. http://www.paraview.org/Wiki/Setting_up_a_ParaView_Server talks about how to compile with OSMesa Utkarsh On Thu, Jun 17, 2010 at 10:17 AM, Matthew Cragun wrote: > Hi, > I'm wonderin

[Paraview] Render windows when running parallel pvserver on localhost

2010-06-17 Thread Matthew Cragun
Hi, I'm wondering if there are any ways to start pvserver in parallel on localhost without the rendering windows popping up on my screen. I understand the render windows need to be created for each of the processors, but is there a way to send them somewhere else or to a background so they won't

[Paraview] Bug: Paraview 3.8.0 - Animation View - "Use Current" trouble

2010-06-17 Thread Michael Fichera
Hello, I'm using Paraview Ver.3.8.0 on Windows Vista 64-bit. In the Animation View, I added a Camera using the "Interpolate camera locations" option. When I click on the Key Frame Interpolation window to choose the locations, I clicked "Use Current" for a start and end position. Trouble is, the

Re: [Paraview] Singleton vtkObject multiple SMProxies

2010-06-17 Thread Biddiscombe, John A.
Further to my last message. I see that you've overridden the getProxy in the SMAdaptiveOptionsProxy class. This is good. They can all reuse the same underlying proxy. I tried using a singleton SMproxy itself - I see your way is better - no connection ID problem. Now I just need to get the filte

Re: [Paraview] Singleton vtkObject multiple SMProxies

2010-06-17 Thread Biddiscombe, John A.
Dave, Thanks, I see the adaptive options stuff. You are manually creating the SMAdaptiveoptionsProxy - which is ok if you have a custom panels - I do for one window, but the others are autogenerated, and I want them to pick up the same proxy (and custom panel for the sub proxy) - I tried creati

[Paraview] ParaView and MILI

2010-06-17 Thread Luton, James A CIV NAVSURFWARCENDIV
I would like to be able to read MILI files generated by ParaDyn into ParaView. I've heard that the VisIt readers (including a MILI reader) are being brought into ParaView. If so, what is the estimated completion date for this? Is there a workaround now? Thanks, Alan Luton -

Re: [Paraview] Singleton vtkObject multiple SMProxies

2010-06-17 Thread David E DeMarle
Utkarsh will probably say there is a better way to do it, but in the mean time take a look at how that pattern is implemented for the streaming applications. There I used a singleton to store system wide options where things like the number of render passes and the state of debug flags. Long ago t

[Paraview] exporting VRML files with python script

2010-06-17 Thread Yann-Hervé Hellouvry
Hi everyone, I am a new user of Paraview and I'm quite interested in using Python script for Paraview My goal is to import VTK series files, apply a contour to all of them and finally export the contours in VRML format. This is my first script : #-

[Paraview] Singleton vtkObject multiple SMProxies

2010-06-17 Thread Biddiscombe, John A.
I have a singleton vtkObject, but multiple paraview panels and other items use it via proxies which are created independently. I'd like changes in any one to be propagated to all, but need to connect the underlying vtkObject modified event to the proxies - the proxy doesn't seem to do this auto

[Paraview] String Property for animation & comparative view

2010-06-17 Thread Aurélien Marsan
Hi, The Animation view, or comparative view inspector, only accept values. (integers & floats) I think it would be great to can change a property of a filter that is a string (as the file name of a reader for example...). What to you mean about that ? Regards, -- Aurélien MARSAN Doctorant Cifre

[Paraview] Interpolation query

2010-06-17 Thread Daniele Avitabile
Hi all, I am using Paraview 3.8.0 on Mac OS X 10.5 (Leopard). I load a .vtk file with an evenly spaced 2D mesh (Structured Points) and associated scalars. Paraview loads it correctly, but the interpolation is rather gross: in a 2D view, I can see all the cells of my mesh. It would seem that Parav