BulletSim: remove unused, commented out code in BSConstraint

This commit is contained in:
Robert Adams
2012-07-25 16:21:14 -07:00
parent 0a4c080e63
commit 9ca1075e7e

View File

@@ -48,14 +48,6 @@ public class BSConstraint : IDisposable
m_world = world;
m_body1 = obj1;
m_body2 = obj2;
/*
BulletSimAPI.AddConstraint(world.ID, m_body1.ID, m_body2.ID,
frame1, frame1rot,
frame2, frame2rot,
linearLow, linearHigh,
angularLow, angularHigh
);
*/
m_constraint = new BulletConstraint(BulletSimAPI.CreateConstraint2(m_world.Ptr, m_body1.Ptr, m_body2.Ptr,
frame1, frame1rot,
frame2, frame2rot));