2009-11-23 11:19:03 +00:00
|
|
|
// Get the halfedge handle of i.e. the halfedge
|
|
|
|
|
// that is associated to the first vertex
|
|
|
|
|
// of our set of vertices
|
2013-08-07 10:26:50 +00:00
|
|
|
PolyMesh::HalfedgeHandle heh = mesh.halfedge_handle(*(mesh.vertices_begin()));
|
2009-11-23 11:19:03 +00:00
|
|
|
|
|
|
|
|
// Now get the handle of its opposing halfedge
|
|
|
|
|
PolyMesh::HalfedgeHandle opposite_heh = mesh.opposite_halfedge_handle(heh);
|