/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...] |
/external/jmonkeyengine/engine/src/jbullet/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); 144 return axle; 350 axle = (Vector3f) capsule.readSavable("wheelAxle", new Vector3f()); 369 capsule.write(axle, "wheelAxle", new Vector3f());
|
PhysicsVehicle.java | 142 * @param axle The axis of the wheel, pointing right in vehicle direction (should be -X / -1,0,0 for a normal car) 148 public VehicleWheel addWheel(Vector3f connectionPoint, Vector3f direction, Vector3f axle, float suspensionRestLength, float wheelRadius, boolean isFrontWheel) { 149 return addWheel(null, connectionPoint, direction, axle, suspensionRestLength, wheelRadius, isFrontWheel); 157 * @param axle The axis of the wheel, pointing right in vehicle direction (should be -X / -1,0,0 for a normal car) 163 public VehicleWheel addWheel(Spatial spat, Vector3f connectionPoint, Vector3f direction, Vector3f axle, float suspensionRestLength, float wheelRadius, boolean isFrontWheel) { 166 wheel = new VehicleWheel(connectionPoint, direction, axle, suspensionRestLength, wheelRadius, isFrontWheel); 168 wheel = new VehicleWheel(spat, connectionPoint, direction, axle, suspensionRestLength, wheelRadius, isFrontWheel); 171 WheelInfo info = vehicle.addWheel(Converter.convert(connectionPoint), Converter.convert(direction), Converter.convert(axle), 502 Vector3f axle = physicsVehicleWheel.getAxle().clone(); local 507 Arrow axleArrow = new Arrow(axle.normalizeLocal().multLocal(0.3f)) [all...] |
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/ |
VehicleControl.java | 202 Vector3f axle = physicsVehicleWheel.getAxle().clone(); local 214 axleArrow.setArrowExtent(axle.normalizeLocal().multLocal(0.3f));
|