[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