|
CDT
2.0.1
C++ library for constrained Delaunay triangulation
|
Edge connecting two vertices: vertex with smaller index is always first. More...
#include <CDTUtils.h>
Public Member Functions | |
| Edge (const VertInd iV1, const VertInd iV2) | |
| Constructor. | |
| bool | operator== (const Edge &other) const |
| Equals operator. | |
| bool | operator!= (const Edge &other) const |
| Not-equals operator. | |
| bool | operator< (const Edge &other) const |
| Less-than operator: orders by (v1, v2); used to get a deterministic order out of hash-set iteration (which is platform-dependent) | |
| VertInd | v1 () const |
| V1 getter. | |
| VertInd | v2 () const |
| V2 getter. | |
| const std::pair< VertInd, VertInd > & | verts () const |
| Edges' vertices. | |
Edge connecting two vertices: vertex with smaller index is always first.
Definition at line 333 of file CDTUtils.h.
Constructor.
Definition at line 336 of file CDTUtils.h.
|
inline |
Not-equals operator.
Definition at line 348 of file CDTUtils.h.
|
inline |
Less-than operator: orders by (v1, v2); used to get a deterministic order out of hash-set iteration (which is platform-dependent)
Definition at line 355 of file CDTUtils.h.
|
inline |
Equals operator.
Definition at line 342 of file CDTUtils.h.
|
inline |
V1 getter.
Definition at line 361 of file CDTUtils.h.
|
inline |
V2 getter.
Definition at line 367 of file CDTUtils.h.
Edges' vertices.
Definition at line 373 of file CDTUtils.h.