getRadiusPoint method

Point getRadiusPoint()

Gets a point defining the radius of the Largest Empty Circle. This is a point on the obstacles which is nearest to the computed center of the Largest Empty Circle. The line segment from the center to this point is a radius of the constructed circle, and this point lies on the boundary of the circle.

@return a point defining the radius of the Largest Empty Circle

Implementation

Point getRadiusPoint() {
  compute();
  return radiusPoint;
}