Attraction force magnitude at time t.
t
double force(double t) { final dist = (position(t) - target).abs(); if (dist < 0.0001) return 0.0; return strength / (dist * dist); }