Developer Documentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
nav_code3.cc
1 [...]
2 
3 // Get some vertex handle
4 PolyMesh::VertexHandle v = ...;
5 
6 for(PolyMesh::VertexIHalfedgeIter vih_it = mesh.vih_iter(v); vih_it; ++vih_it) {
7  // Iterate over all incoming halfedges...
8 }
9 
10 for(PolyMesh::VertexOHalfedgeIter voh_it = mesh.voh_iter(v); voh_it; ++voh_it) {
11  // Iterate over all outgoing halfedges...
12 }
13 
14 [...]