getDefaultVelocityAddition method
Implementation
@protected
double getDefaultVelocityAddition(double velocity, Tolerance tolerance) {
assert(velocity != null);
assert(tolerance != null);
return velocity.abs() > tolerance.velocity ? 0.5 * velocity.sign : 0.0;
}