bool isWithinXY(num x, num y, num epsilon)

Source

bool isWithinXY(num x, num y, num epsilon) => distanceXYSqr(x, y) < epsilon * epsilon;