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