clearForces method

void clearForces()

Call this after you are done with time steps to clear the forces. You normally call this after each call to stepDt, unless you are performing sub-steps. By default, forces will be automatically cleared, so you don't need to call this function.

Implementation

void clearForces() {
  bodies.forEach((b) => b.clearForces());
}