coords property

Float32List coords

The coordinates being triangulated.

Even indices are the x coordinates of the points, and the odd indices are the y coordinates of the points. E.g.:

double px = coords[2*i];
double py = coords[2*i + 1];

Implementation

Float32List get coords => _coords;