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

Function dWorldAddJoint

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

joints

Source from the content-addressed store, hash-verified

898//****************************************************************************
899// joints
900void dWorldAddJoint(dxWorld *w,dxJoint *j)
901{
902 dIASSERT (j&&w);
903 j->world=w;
904 addObjectToList (j,(dObject **) &w->firstjoint);
905 w->nj++;
906
907}
908void dWorldRemoveJoint(dxWorld* w,dxJoint *j)
909{
910 dIASSERT(w&&j&&w==j->world);

Callers 3

dJointInitFunction · 0.85
AddJointMethod · 0.85
ConnectJointMethod · 0.85

Calls 1

addObjectToListFunction · 0.85

Tested by

no test coverage detected