enable 'getAngularFactor' again

add getAppliedImpulse accessor to btManifoldPoint
This commit is contained in:
erwin.coumans
2009-02-17 20:38:54 +00:00
parent 4b98cadd4c
commit 4236764cfb
2 changed files with 12 additions and 6 deletions

View File

@@ -112,6 +112,12 @@ class btManifoldPoint
m_distance1 = dist;
}
///this returns the most recent applied impulse, to satisfy contact constraints by the constraint solver
btScalar getAppliedImpulse() const
{
return m_appliedImpulse;
}
};