Finds the Voronoi cell containing point (x, y). Returns the index of the cell, or -1 if outside all cells.
int find(double x, double y) { return _findNearestPoint(x, y); }