[vtkusers] (no subject)

vanessa.noguesruiz at epfl.ch vanessa.noguesruiz at epfl.ch
Wed Apr 16 11:45:50 EDT 2003


Hello.

I would like to know how to read points from a polydata vtk file, as I do the 
following: 

vtkPolyDataReader *lector = vtkPolyDataReader::New();
      lector->SetFileName ("D:/Proyecto/vtk/cube.vtk");
vtkPolyData *info=vtkPolyData::New();
info=lector->GetOutput();
vtkPoints *points=vtkPoints::New();
		points=info->GetPoints();

and I don't get any points pointed by "points".
Could anyone explainme why I am not getting the data in this way? I've also 
tried to get polygons cells and verts, but it always results NULL or a 
exception is launched when running, although it compiles and links perfectly.

Thanks in advance.



More information about the vtkusers mailing list