117118119120121122123
public Location nearestNeighbor(int px, int py) { return kdTreeNearest(px, py); } public Location kdTreeNearest(int px, int py) { return new KdTreeLookup(kdTree, width).getResult(px, py); }