getInteriorPoint method

Point getInteriorPoint()

Implementation

Point getInteriorPoint() {
  if (isEmpty()) {
    return factory.createPoint();
  }

  Coordinate pt = InteriorPoint.getInteriorPoint(this)!;
  return createPointFromInternalCoord(pt, this);
}