HomeSort by relevance Sort by last modified time
    Searched refs:axle (Results 1 - 8 of 8) sorted by null

  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
VehicleWheel.java 53 protected Vector3f axle = new Vector3f(); field in class:VehicleWheel
73 public VehicleWheel(Spatial spat, Vector3f location, Vector3f direction, Vector3f axle,
75 this(location, direction, axle, restLength, radius, frontWheel);
79 public VehicleWheel(Vector3f location, Vector3f direction, Vector3f axle,
83 this.axle.set(axle);
149 return axle;
370 axle = (Vector3f) capsule.readSavable("wheelAxle", new Vector3f());
389 capsule.write(axle, "wheelAxle", new Vector3f());
PhysicsVehicle.java 149 private native int addWheel(long objectId, Vector3f location, Vector3f direction, Vector3f axle, float restLength, float radius, VehicleTuning tuning, boolean frontWheel);
155 * @param axle The axis of the wheel, pointing right in vehicle direction (should be -X / -1,0,0 for a normal car)
161 public VehicleWheel addWheel(Vector3f connectionPoint, Vector3f direction, Vector3f axle, float suspensionRestLength, float wheelRadius, boolean isFrontWheel) {
162 return addWheel(null, connectionPoint, direction, axle, suspensionRestLength, wheelRadius, isFrontWheel);
170 * @param axle The axis of the wheel, pointing right in vehicle direction (should be -X / -1,0,0 for a normal car)
176 public VehicleWheel addWheel(Spatial spat, Vector3f connectionPoint, Vector3f direction, Vector3f axle, float suspensionRestLength, float wheelRadius, boolean isFrontWheel) {
179 wheel = new VehicleWheel(connectionPoint, direction, axle, suspensionRestLength, wheelRadius, isFrontWheel);
181 wheel = new VehicleWheel(spat, connectionPoint, direction, axle, suspensionRestLength, wheelRadius, isFrontWheel);
519 Vector3f axle = physicsVehicleWheel.getAxle().clone(); local
524 Arrow axleArrow = new Arrow(axle.normalizeLocal().multLocal(0.3f))
    [all...]