getRadiusLineString method

LineString getRadiusLineString()

Gets a line representing a radius of the Largest Empty Circle.

@return a line from the center of the circle to a point on the edge

Implementation

LineString getRadiusLineString() {
  compute();
  LineString radiusLine = factory.createLineString(
      [ centerPt.copy(), radiusPt.copy() ]);
  return radiusLine;
}