| 382 | |
| 383 | |
| 384 | void dBodySetAngularVel (dBodyID b, dReal x, dReal y, dReal z) |
| 385 | { |
| 386 | dAASSERT (b); |
| 387 | b->avel[0] = x; |
| 388 | b->avel[1] = y; |
| 389 | b->avel[2] = z; |
| 390 | } |
| 391 | |
| 392 | |
| 393 | const dReal * dBodyGetPosition (dBodyID b) |
no outgoing calls
no test coverage detected