SAF
|
Data structure for Voronoi diagrams. More...
#include <saf_utility_geometry.h>
Data Fields | |
int | nVert |
Number of vertices. | |
int | nFaces |
Number of faces/polygons. | |
float ** | vert |
Vertices; nVert x 3. | |
int ** | faces |
faces; nFaces x nPointsPerFace[i] | |
int * | nPointsPerFace |
Number of points for each face; nFaces x 1. | |
Data structure for Voronoi diagrams.
Definition at line 62 of file saf_utility_geometry.h.
int** voronoi_data::faces |
faces; nFaces x nPointsPerFace[i]
Definition at line 66 of file saf_utility_geometry.h.
int voronoi_data::nFaces |
Number of faces/polygons.
Definition at line 64 of file saf_utility_geometry.h.
int* voronoi_data::nPointsPerFace |
Number of points for each face; nFaces x 1.
Definition at line 67 of file saf_utility_geometry.h.
int voronoi_data::nVert |
Number of vertices.
Definition at line 63 of file saf_utility_geometry.h.
float** voronoi_data::vert |
Vertices; nVert x 3.
Definition at line 65 of file saf_utility_geometry.h.