home *** CD-ROM | disk | FTP | other *** search
- package Box2D.Dynamics.Joints
- {
- import Box2D.Common.Math.b2Vec2;
-
- public class b2DistanceJointDef extends b2JointDef
- {
-
-
- public var anchorPoint1:b2Vec2;
-
- public var anchorPoint2:b2Vec2;
-
- public function b2DistanceJointDef()
- {
- anchorPoint1 = new b2Vec2();
- anchorPoint2 = new b2Vec2();
- super();
- type = b2Joint.e_distanceJoint;
- }
- }
- }
-