Ejemplo n.º 1
0
void RagdollDemo::updateObjects(cyclone::real duration)
{
    for (Bone *bone = bones; bone < bones+NUM_BONES; bone++)
    {
        bone->body->integrate(duration);
        bone->calculateInternals();
    }
}