getRadiusPoint method

Point getRadiusPoint()

Gets a point defining the radius of the Maximum Inscribed Circle. This is a point on the boundary which is nearest to the computed center of the Maximum Inscribed 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 Maximum Inscribed Circle

Implementation

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