createInterorPointCell method

CellMIC createInterorPointCell(
  1. Geometry geom
)

Implementation

CellMIC createInterorPointCell(Geometry geom) {
  Point p = geom.getInteriorPoint();
  return new CellMIC(p.getX(), p.getY(), 0, distanceToBoundaryPoint(p));
}