Polygon Mesh Processing Library
Loading...
Searching...
No Matches
SurfaceMesh::EdgeAroundVertexCirculator Class Reference

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?
 
EdgeAroundVertexCirculatoroperator++ ()
 pre-increment (rotate counter-clockwise)
 
EdgeAroundVertexCirculator operator++ (int)
 post-increment (rotate counter-clockwise)
 
EdgeAroundVertexCirculatoroperator-- ()
 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
 

Detailed Description

this class circulates through all edges incident to a vertex.

it also acts as a container-concept for C++11 range-based for loops.

See also
VertexAroundVertexCirculator, edges(Vertex)