| 750 | |
| 751 | |
| 752 | dJointID dBodyGetJoint (dBodyID b, int index) |
| 753 | { |
| 754 | dAASSERT (b); |
| 755 | int i=0; |
| 756 | for (dxJointNode *n=b->firstjoint; n; n=n->next, i++) { |
| 757 | if (i == index) return n->joint; |
| 758 | } |
| 759 | return 0; |
| 760 | } |
| 761 | |
| 762 | |
| 763 | void dBodyEnable (dBodyID b) |
no outgoing calls
no test coverage detected