createCell method

CellMIC createCell(
  1. double x,
  2. double y,
  3. double hSide
)

Implementation

CellMIC createCell(double x, double y, double hSide) {
  return new CellMIC(x, y, hSide, distanceToBoundaryXY(x, y));
}