distanceMax method

ManyBodyForce distanceMax([
  1. double? max
])

Implementation

ManyBodyForce distanceMax([double? max]) {
  if (max != null) {
    _distanceMax2 = max * max;
  }
  return this;
}