Package org.jbox2d.dynamics.joints

Examples of org.jbox2d.dynamics.joints.MotorJointDef.initialize()


      fd.friction = 0.6f;
      fd.density = 2.0f;
      body.createFixture(fd);

      MotorJointDef mjd = new MotorJointDef();
      mjd.initialize(getGroundBody(), body);
      mjd.maxForce = 1000.0f;
      mjd.maxTorque = 1000.0f;
      m_joint = (MotorJoint) m_world.createJoint(mjd);
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.