MCPcopy Create free account
hub / github.com/OGSR/OGSR-Engine / dBodyGetNumJoints

Function dBodyGetNumJoints

3rd_party/Src/ode/ode/src/ode.cpp:743–749  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

741
742
743int dBodyGetNumJoints (dBodyID b)
744{
745 dAASSERT (b);
746 int count=0;
747 for (dxJointNode *n=b->firstjoint; n; n=n->next, count++);
748 return count;
749}
750
751
752dJointID dBodyGetJoint (dBodyID b, int index)

Callers 5

getNumJointsMethod · 0.85
PhTuneMethod · 0.85
PhDataUpdateMethod · 0.85
PhTuneMethod · 0.85
UpdateMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected