Assuming s is your simplex mesh, p[0], p[1] and p[2] will contain your x, y, z coordinates, respectively, for ith point of the mesh.<div><br></div><div><div><div><span class="" style="white-space:pre">        </span>typedef itk::PointSet<double, 3> PointSetType;<span class="" style="white-space:pre">        </span></div>
<div><span class="" style="white-space:pre">        </span>for (int i = 0; i < s->GetNumberOfPoints(); i++) {</div><div><span class="" style="white-space:pre">                </span>PointSetType::PointType p;</div><div><span class="" style="white-space:pre">                </span>p = s->GetPoint(i);</div>
<div><span class="" style="white-space:pre">                </span></div><div><span class="" style="white-space:pre">                </span>cout << p[0] << ", " << p[1] << ", " << p[2] << endl;</div>
<div><span class="" style="white-space:pre">        </span>}</div></div><div><br></div><div><br></div>-- <br>Tanweer Rashid<br>MSVE Dept.<br><div>Old Dominion University</div><br>
</div>