| 373 | |
| 374 | |
| 375 | void dBodySetLinearVel (dBodyID b, dReal x, dReal y, dReal z) |
| 376 | { |
| 377 | dAASSERT (b); |
| 378 | b->lvel[0] = x; |
| 379 | b->lvel[1] = y; |
| 380 | b->lvel[2] = z; |
| 381 | } |
| 382 | |
| 383 | |
| 384 | void dBodySetAngularVel (dBodyID b, dReal x, dReal y, dReal z) |
no outgoing calls
no test coverage detected