getInteriorPoint method
Implementation
Point getInteriorPoint() {
if (isEmpty()) {
return factory.createPoint();
}
Coordinate pt = InteriorPoint.getInteriorPoint(this)!;
return createPointFromInternalCoord(pt, this);
}
Point getInteriorPoint() {
if (isEmpty()) {
return factory.createPoint();
}
Coordinate pt = InteriorPoint.getInteriorPoint(this)!;
return createPointFromInternalCoord(pt, this);
}