home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / pup_idol.swf / scripts / Box2D / Dynamics / Joints / b2DistanceJointDef.as < prev    next >
Encoding:
Text File  |  2008-08-07  |  458 b   |  22 lines

  1. package Box2D.Dynamics.Joints
  2. {
  3.    import Box2D.Common.Math.b2Vec2;
  4.    
  5.    public class b2DistanceJointDef extends b2JointDef
  6.    {
  7.        
  8.       
  9.       public var anchorPoint1:b2Vec2;
  10.       
  11.       public var anchorPoint2:b2Vec2;
  12.       
  13.       public function b2DistanceJointDef()
  14.       {
  15.          anchorPoint1 = new b2Vec2();
  16.          anchorPoint2 = new b2Vec2();
  17.          super();
  18.          type = b2Joint.e_distanceJoint;
  19.       }
  20.    }
  21. }
  22.