Developer Documentation
Loading...
Searching...
No Matches
nav_code3.cc
1[...]
2
3// Get some vertex handle
4PolyMesh::VertexHandle v = ...;
5
6for(PolyMesh::VertexIHalfedgeIter vih_it = mesh.vih_iter(v); vih_it; ++vih_it) {
7 // Iterate over all incoming halfedges...
8}
9
10for(PolyMesh::VertexOHalfedgeIter voh_it = mesh.voh_iter(v); voh_it; ++voh_it) {
11 // Iterate over all outgoing halfedges...
12}
13
14[...]