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

  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
NestedBuildersTest.java 151 vehicleBuilder.addWheel(Wheel.newBuilder()
154 vehicleBuilder.addWheel(Wheel.newBuilder()
165 .addWheel(Wheel.newBuilder().setRadius(1).build())
166 .addWheel(Wheel.newBuilder().setRadius(2).build())
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
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);
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),
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),
TestFancyCar.java 190 player.addWheel(wheel_fr.getParent(), box.getCenter().add(0, -front_wheel_h, 0),
196 player.addWheel(wheel_fl.getParent(), box.getCenter().add(0, -front_wheel_h, 0),
202 player.addWheel(wheel_br.getParent(), box.getCenter().add(0, -back_wheel_h, 0),
208 player.addWheel(wheel_bl.getParent(), box.getCenter().add(0, -back_wheel_h, 0),
  /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()));
  /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/bullet-native/
com_jme3_bullet_objects_PhysicsVehicle.cpp 126 * Method: addWheel
144 btWheelInfo* info = &vehicle->addWheel(vec1, vec2, vec3, restLength, radius, tune, frontWheel);
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
VehicleControl.java 112 VehicleWheel newWheel = control.addWheel(wheel.getLocation(), wheel.getDirection(), wheel.getAxle(), wheel.getRestLength(), wheel.getRadius(), wheel.isFrontWheel());

Completed in 74 milliseconds