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

Function dBodyGetJoint

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

Source from the content-addressed store, hash-verified

750
751
752dJointID 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
763void dBodyEnable (dBodyID b)

Callers 5

getJointMethod · 0.85
PhTuneMethod · 0.85
PhDataUpdateMethod · 0.85
PhTuneMethod · 0.85
UpdateMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected