Hi, all<br><br>I am trying to read texture coordinates in a .vtk file. Currently I am using <b>vtkGenericDataObjectReader</b>, the code is like follows:<br><br>--------------------------------------<br> vtkSmartPointer<vtkGeneriDataObjectReader> reader = vtkSmartPointer<vtkGeneriDataObjectReader>::New();<br>
reader->SetFileName("K:\\model1.vtk");<br> reader->OpenVTKFile();<br> reader->ReadAllTCoordsOn();<br> reader->SetTCoordsName("t");<br> reader->Update();<br><br> vtkPolyData* face = vtkPolyData::New();<br>
face = reader->GetPolyDataOutput();<br>--------------------------------------<br><br>But what next? I don't know how to extract the texture coordinates as an individual data object. Does "face->GetPointData()->GetTCoords()" work? If so, can I have an example code clip?<br>
<br>Thank you very much in advance for your kindly help.<br><br>All bests<br>Wenlong<br>