Lines Matching defs:force
255 /* Calculate force and acceleration */
256 Geom::Point force = n - this->cur;
258 // If force is below the absolute threshold DYNA_EPSILON,
260 // _and_ the force is below the (higher) DYNA_EPSILON_START threshold,
265 if ( Geom::L2(force) < DYNA_EPSILON || (this->vel_max < DYNA_VEL_START && Geom::L2(force) < DYNA_EPSILON_START)) {
269 this->acc = force / mass;
308 // flip a2 to force it to be in the same half-circle as a1
333 // g_print ("force %g acc %g vel_max %g vel %g a1 %g a2 %g new_ang %g\n", Geom::L2(force), Geom::L2(dc->acc), dc->vel_max, Geom::L2(dc->vel), a1, a2, new_ang);