stopTime property

double get stopTime

Estimated stop time (when velocity < threshold).

Implementation

double get stopTime {
  if (velocity0 == 0) return 0;
  return math.log(restVelocityThreshold / velocity0.abs()) / _logDrag;
}