HomeSort by relevance Sort by last modified time
    Searched defs:addWheel (Results 1 - 5 of 5) sorted by null

  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
PhysicsVehicle.java 133 wheel.setWheelInfo(vehicle.addWheel(Converter.convert(wheel.getLocation()), Converter.convert(wheel.getDirection()), Converter.convert(wheel.getAxle()),
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);
163 public VehicleWheel addWheel(Spatial spat, Vector3f connectionPoint, Vector3f direction, Vector3f axle, float suspensionRestLength, float wheelRadius, boolean isFrontWheel) {
171 WheelInfo info = vehicle.addWheel(Converter.convert(connectionPoint), Converter.convert(direction), Converter.convert(axle),
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestPhysicsCar.java 139 vehicle.addWheel(node1, new Vector3f(-xOff, yOff, zOff),
147 vehicle.addWheel(node2, new Vector3f(xOff, yOff, zOff),
155 vehicle.addWheel(node3, new Vector3f(-xOff, yOff, -zOff),
163 vehicle.addWheel(node4, new Vector3f(xOff, yOff, -zOff),
PhysicsHoverControl.java 120 addWheel(HOVER_HEIGHT_LF_START, new Vector3f(0, -1, 0), new Vector3f(-1, 0, 0), yw, yw, false);
121 addWheel(HOVER_HEIGHT_RF_START, new Vector3f(0, -1, 0), new Vector3f(-1, 0, 0), yw, yw, false);
122 addWheel(HOVER_HEIGHT_LR_START, new Vector3f(0, -1, 0), new Vector3f(-1, 0, 0), yw, yw, false);
123 addWheel(HOVER_HEIGHT_RR_START, new Vector3f(0, -1, 0), new Vector3f(-1, 0, 0), yw, yw, false);
TestAttachDriver.java 167 vehicle.addWheel(node1, new Vector3f(-xOff, yOff, zOff),
175 vehicle.addWheel(node2, new Vector3f(xOff, yOff, zOff),
183 vehicle.addWheel(node3, new Vector3f(-xOff, yOff, -zOff),
191 vehicle.addWheel(node4, new Vector3f(xOff, yOff, -zOff),
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
PhysicsVehicle.java 139 wheel.setVehicleId(vehicleId, addWheel(vehicleId, wheel.getLocation(), wheel.getDirection(), wheel.getAxle(), wheel.getRestLength(), wheel.getRadius(), tuning, wheel.isFrontWheel()));
149 private native int addWheel(long objectId, Vector3f location, Vector3f direction, Vector3f axle, float restLength, float radius, VehicleTuning tuning, boolean frontWheel);
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);
176 public VehicleWheel addWheel(Spatial spat, Vector3f connectionPoint, Vector3f direction, Vector3f axle, float suspensionRestLength, float wheelRadius, boolean isFrontWheel) {
191 wheel.setVehicleId(vehicleId, addWheel(vehicleId, wheel.getLocation(), wheel.getDirection(), wheel.getAxle(), wheel.getRestLength(), wheel.getRadius(), tuning, wheel.isFrontWheel()));

Completed in 365 milliseconds