Triangulation triangle (counter-clockwise winding) More...
#include <CDTUtils.h>
Public Member Functions | |
Triangle () | |
Triangle with no vertices and no neighbors. | |
Triangle (const VerticesArr3 &vertices, const NeighborsArr3 &neighbors) | |
Triangle with given vertices and neighbors. | |
std::pair< TriInd, VertInd > | next (const VertInd i) const |
Next triangle adjacent to a vertex (clockwise) | |
std::pair< TriInd, VertInd > | prev (const VertInd i) const |
Previous triangle adjacent to a vertex (counter-clockwise) | |
bool | containsVertex (const VertInd i) const |
Check if triangle contains a vertex. | |
Public Attributes | |
VerticesArr3 | vertices |
triangle's three vertices | |
NeighborsArr3 | neighbors |
triangle's three neighbors | |
Triangulation triangle (counter-clockwise winding)
Definition at line 343 of file CDTUtils.h.
|
inline |
Triangle with no vertices and no neighbors.
Definition at line 349 of file CDTUtils.h.
|
inline |
Triangle with given vertices and neighbors.
Definition at line 355 of file CDTUtils.h.
|
inline |
Check if triangle contains a vertex.
Definition at line 389 of file CDTUtils.h.
Next triangle adjacent to a vertex (clockwise)
Definition at line 362 of file CDTUtils.h.
Previous triangle adjacent to a vertex (counter-clockwise)
Definition at line 378 of file CDTUtils.h.
NeighborsArr3 CDT::Triangle::neighbors |
triangle's three neighbors
Definition at line 346 of file CDTUtils.h.
VerticesArr3 CDT::Triangle::vertices |
triangle's three vertices
Definition at line 345 of file CDTUtils.h.