| 443 | return E_NlS(b2, norm, -1); |
| 444 | } |
| 445 | void ApplyGravityAccel(dBodyID body, const dReal* accel) |
| 446 | { |
| 447 | dMass m; |
| 448 | dBodyGetMass(body, &m); |
| 449 | dBodyAddForce(body, accel[0] * m.mass, accel[1] * m.mass, accel[2] * m.mass); |
| 450 | } |
| 451 | |
| 452 | const dReal* dJointGetPositionContact(dJointID joint) |
| 453 | { |
nothing calls this directly
no test coverage detected