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&lt;vtkGeneriDataObjectReader&gt; reader = vtkSmartPointer&lt;vtkGeneriDataObjectReader&gt;::New();<br>
    reader-&gt;SetFileName(&quot;K:\\model1.vtk&quot;);<br>    reader-&gt;OpenVTKFile();<br>    reader-&gt;ReadAllTCoordsOn();<br>    reader-&gt;SetTCoordsName(&quot;t&quot;);<br>    reader-&gt;Update();<br><br>    vtkPolyData* face = vtkPolyData::New();<br>
    face = reader-&gt;GetPolyDataOutput();<br>--------------------------------------<br><br>But what next? I don&#39;t know how to extract the texture coordinates as an individual data object. Does &quot;face-&gt;GetPointData()-&gt;GetTCoords()&quot; 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>