1. override
double dx(double time)

The velocity of the object in the simulation at the given time.

Source

@override
double dx(double time) {
  _stepIfNecessary(time);
  return currentSimulation.dx(time - currentIntervalOffset);
}