|
VTK
9.6.20260213
|
#include <vtkVoronoiCore.h>
Public Member Functions | |
| vtkVoronoiTopoCoord2D () | |
| Various flavors of constructors. | |
| vtkVoronoiTopoCoord2D (vtkIdType p0, vtkIdType p1, vtkIdType ptId) | |
| Define with the N+1 point generators: the N generators producing the hull vertex, plus the current point generator. | |
| vtkVoronoiTopoCoord2D (const vtkVoronoiTopoCoord2D &tt) | |
| Copy constructor assumes that tuple ids are already sorted. | |
| bool | operator< (const vtkVoronoiTopoCoord2D &tuple) const |
| Operator< used to support a subsequent sort operation of the n-tuples (used for uniquely identifying and producing a topologcally coincident point). | |
Public Attributes | |
| std::array< vtkIdType, 3 > | Ids |
| Points defining a topological coord tuple / Delaunay simplex. | |
Definition at line 259 of file vtkVoronoiCore.h.
|
inline |
Various flavors of constructors.
Definition at line 270 of file vtkVoronoiCore.h.
Define with the N+1 point generators: the N generators producing the hull vertex, plus the current point generator.
Definition at line 278 of file vtkVoronoiCore.h.
|
inline |
Copy constructor assumes that tuple ids are already sorted.
Definition at line 286 of file vtkVoronoiCore.h.
|
inline |
Operator< used to support a subsequent sort operation of the n-tuples (used for uniquely identifying and producing a topologcally coincident point).
Definition at line 293 of file vtkVoronoiCore.h.
| std::array<vtkIdType, 3> vtkVoronoiTopoCoord2D::Ids |
Points defining a topological coord tuple / Delaunay simplex.
std::array has some nice properties including being easily sortable.
Definition at line 265 of file vtkVoronoiCore.h.