this class circulates through all edges incident to a vertex. More...
#include <pmp/surface_mesh.h>
Public Member Functions | |
EdgeAroundVertexCirculator (const SurfaceMesh *mesh=nullptr, Vertex v=Vertex()) | |
default constructor | |
bool | operator== (const EdgeAroundVertexCirculator &rhs) const |
are two circulators equal? | |
bool | operator!= (const EdgeAroundVertexCirculator &rhs) const |
are two circulators different? | |
EdgeAroundVertexCirculator & | operator++ () |
pre-increment (rotate counter-clockwise) | |
EdgeAroundVertexCirculator | operator++ (int) |
post-increment (rotate counter-clockwise) | |
EdgeAroundVertexCirculator & | operator-- () |
pre-decrement (rotate clockwise) | |
EdgeAroundVertexCirculator | operator-- (int) |
post-decrement (rotate clockwise) | |
Edge | operator* () const |
get the halfedge the circulator refers to | |
operator bool () const | |
cast to bool: true if vertex is not isolated | |
this class circulates through all edges incident to a vertex.
it also acts as a container-concept for C++11 range-based for loops.