Re: [Paraview] Reset camera center of rotation

2010-07-12 Thread Laurent Vanboquestal
Yeah, It works ... Thanks you, Regards, Laurent On Fri, Jul 9, 2010 at 6:37 PM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Try the following: ResetCamera() view = GetActiveView() view.CenterOfRotation = GetActiveCamera().GetFocalPoint() Render() On Fri, Jul 9, 2010 at 11:58

Re: [Paraview] Question about showing a few nodes/points using vtk xml

2010-07-12 Thread L.M. de Vries
Hi, That indeed solved my problem. Thanks! Luis Manuel On 06/07/2010 18:16, Eric E. Monson wrote: Hey Luis, You need to specify not only points, but some types of cells (with connectivity information) in your VTP file. If you want just disconnected vertices, here is an example: VTKFile

Re: [Paraview] new user question

2010-07-12 Thread Moreland, Kenneth
I usually go to ParaView's main web page (http://paraview.org), then click Help - Mailing Lists. That will give you a text box that you can search the mailing list archives. It actually sends you to the exact same markmail link Michael just sent, but it's a lot easier for me to remember how

Re: [Paraview] streams from CSV table

2010-07-12 Thread Moreland, Kenneth
The issue is that ParaView regards your data as a bunch of points in empty space. When the stream tracer looks at the empty space, it sees no field and terminates the streamline. To see streamlines, you need a topology that interpolates field values around the points. The easiest way to do

Re: [Paraview] ParaView GIT on Windows764bit MSVC2010 crashed

2010-07-12 Thread Robert Maynard
Hi, I just fixed this on the master branch of ParaView. On Sat, Jul 10, 2010 at 10:52 PM, Dr. X xun...@renci.org wrote: Hi All, Here is the call stack of the Debug version. === msvcp100d.dll!std::_Debug_message(const wchar_t * message, const wchar_t * file, unsigned int line)

Re: [Paraview] Paraview [3.8.0] goes into infinite loop on using pointSprite with Sphere

2010-07-12 Thread Francois Bertel
Hi Madhura, A quick review of the file ParaView/Plugins/PointSprite/Rendering/Resources/Shaders/Quadrics_vs.glsl shows it is missing a statement #version 120 at the beginning as transpose() is defined for GLSL=1.20. It does not mean it will fix your issue because your card has to support

[Paraview] vtk file open command

2010-07-12 Thread llapis Pencil
Hi, I'm trying to open a vtk file with a Python script. Do someone know which is the appropiated command? Do I need special libraries? Thanks for advance Llapis ___ Powered by www.kitware.com Visit other Kitware open-source projects at

Re: [Paraview] vtk file open command

2010-07-12 Thread Sebastien Jourdain
The solution has been post previously but here is what you should look for. # The python script is the following: from paraview.simple import * reader = OpenDataFile('...\out1-1.vtk') Show(reader) Render() # Seb On Mon, Jul 12, 2010 at 3:35 PM, llapis Pencil llapispen...@yahoo.es