Returns true if point (x, y) is inside the Voronoi cell at index cellIndex.
cellIndex
bool containsIndex(int cellIndex, double x, double y) { final nearest = _findNearestPoint(x, y); return nearest == cellIndex; }