start method

void start()

Starts (or restarts mid-flight) preserving velocity.

Implementation

void start() {
  x = 0;
  if (v > 14) v = 14;
  if (v < -14) v = -14;
}