CellMIC constructor

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

Implementation

CellMIC(this.x, this.y, this.hSide, this.distance) {
   // the maximum possible distance to area boundary for points in this cell
  this.maxDist = distance + hSide * SQRT2;
}