<div>
                    Hi All,
                </div><div><br></div><div>I am new to VTK and I am trying to get the values of a mesh at a given contour/isosurface.</div><div><br></div><div>I am getting the contours using the following</div><div><br></div><div><div>vtkSmartPointer&lt;vtkCutter&gt; cutter = vtkSmartPointer&lt;vtkCutter&gt;::New();</div><div>&nbsp; &nbsp; cutter-&gt;SetCutFunction(plane);</div><div>&nbsp; &nbsp; cutter-&gt;SetGenerateCutScalars(1);</div><div>#if VTK_MAJOR_VERSION &lt;= 5</div><div>&nbsp; &nbsp; cutter-&gt;SetInput(inputPolyData);</div><div>#else</div><div>&nbsp; &nbsp; cutter-&gt;SetInputData(inputPolyData);</div><div>#endif</div><div>&nbsp; &nbsp; cutter-&gt;GenerateValues(20, -distanceMin, distanceMax);</div><div>&nbsp; &nbsp; vtkSmartPointer&lt;vtkPolyDataMapper&gt; cutterMapper = vtkSmartPointer&lt;vtkPolyDataMapper&gt;::New();</div><div>&nbsp; &nbsp; cutterMapper-&gt;SetInputConnection( cutter-&gt;GetOutputPort());</div><div>&nbsp; &nbsp; cutterMapper-&gt;ScalarVisibilityOff();</div></div>
                <div><div><br></div><div><br></div><div>But now I want to store the (x,y,z) positions of the mesh surface along each contour to an array of points. How can I do this? Is there any implemented utility to do this?</div><div><br></div><div>thanks,</div><div><br></div><div><br></div><div>billy</div><div><br></div></div>