Package com.badlogic.gdx.physics.box2d.joints

Examples of com.badlogic.gdx.physics.box2d.joints.MotorJointDef


    if (def.type == JointType.GearJoint) {
      GearJointDef d = (GearJointDef)def;
      return jniCreateGearJoint(addr, d.bodyA.addr, d.bodyB.addr, d.collideConnected, d.joint1.addr, d.joint2.addr, d.ratio);
    }
    if (def.type == JointType.MotorJoint) {
      MotorJointDef d = (MotorJointDef)def;
      return jniCreateMotorJoint(addr, d.bodyA.addr, d.bodyB.addr, d.collideConnected, d.linearOffset.x, d.linearOffset.y,
        d.angularOffset, d.maxForce, d.maxTorque, d.correctionFactor);
    }
    if (def.type == JointType.MouseJoint) {
      MouseJointDef d = (MouseJointDef)def;
View Full Code Here

TOP

Related Classes of com.badlogic.gdx.physics.box2d.joints.MotorJointDef

Copyright © 2018 www.massapicom. 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.