createCell method

CellLEC createCell(
  1. double x,
  2. double y,
  3. double h
)

Implementation

CellLEC createCell(double x, double y, double h) {
  return new CellLEC(x, y, h, distanceToConstraintsXY(x, y));
}