Re: [Paraview] how-to use vtkCleanUnstructuredGrid?

2012-06-19 Thread David E DeMarle
The filter is in: ParaViewCore/VTKExtensions/vtkCleanUnstructuredGrid.cxx You might 1) access it from paraview's vtkpython making sure VTKExtensions is wrapped 2) copy the code into your copy of VTK and recompile to use it there. 3) get creative with your paths and access it somehow in a side by

[Paraview] how-to use vtkCleanUnstructuredGrid?

2012-06-16 Thread jean mensa
Hi all, I am trying to clean an unstructured mesh with a python script and I want to use the vtkCleanUnstructuredGrid() filter. What I have now is something that looks like this, ugrid = vtk.vtkUnstructuredGrid() gridreader = vtk.vtkXMLUnstructuredGridReader() gridreader.SetFileName(filename)