A triangle of the triangulation. More...
#include <XYIncrementalDelaunay.h>
Public Attributes | |
| std::array< std::size_t, 3 > | vertices |
| std::array< std::size_t, 3 > | neighbors |
A triangle of the triangulation.
The three vertices are ordered counter-clockwise. Entry i of neighbors is the triangle across the edge opposite vertices[i], that is the edge from vertices[(i + 1) % 3] to vertices[(i + 2) % 3], or invalid_index when no triangle lies across that edge.
Definition at line 65 of file XYIncrementalDelaunay.h.
| std::array<std::size_t, 3> XYIncrementalDelaunay::Triangle::neighbors |
Definition at line 68 of file XYIncrementalDelaunay.h.
Referenced by XYIncrementalDelaunay::initialize().
| std::array<std::size_t, 3> XYIncrementalDelaunay::Triangle::vertices |
Definition at line 67 of file XYIncrementalDelaunay.h.
Referenced by XYIncrementalDelaunay::initialize().