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

  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestPhysicsCar.java 127 float restLength = 0.3f;
140 wheelDirection, wheelAxle, restLength, radius, true);
148 wheelDirection, wheelAxle, restLength, radius, true);
156 wheelDirection, wheelAxle, restLength, radius, false);
164 wheelDirection, wheelAxle, restLength, radius, false);
TestAttachDriver.java 155 float restLength = 0.3f;
168 wheelDirection, wheelAxle, restLength, radius, true);
176 wheelDirection, wheelAxle, restLength, radius, true);
184 wheelDirection, wheelAxle, restLength, radius, false);
192 wheelDirection, wheelAxle, restLength, radius, false);
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
VehicleWheel.java 62 protected float restLength = 1f;
74 float restLength, float radius, boolean frontWheel) {
75 this(location, direction, axle, restLength, radius, frontWheel);
80 float restLength, float radius, boolean frontWheel) {
85 this.restLength = restLength;
257 applyInfo(wheelId, wheelIndex, suspensionStiffness, wheelsDampingRelaxation, wheelsDampingCompression, frictionSlip, rollInfluence, maxSuspensionTravelCm, maxSuspensionForce, radius, frontWheel, restLength);
282 return restLength;
285 public void setRestLength(float restLength) {
286 this.restLength = restLength
    [all...]
PhysicsVehicle.java 149 private native int addWheel(long objectId, Vector3f location, Vector3f direction, Vector3f axle, float restLength, float radius, VehicleTuning tuning, boolean frontWheel);
520 float restLength = physicsVehicleWheel.getRestLength();
526 Arrow dirArrow = new Arrow(direction.normalizeLocal().multLocal(restLength));
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
VehicleWheel.java 62 protected float restLength = 1f;
74 float restLength, float radius, boolean frontWheel) {
75 this(location, direction, axle, restLength, radius, frontWheel);
80 float restLength, float radius, boolean frontWheel) {
85 this.restLength = restLength;
261 wheelInfo.suspensionRestLength1 = restLength;
274 return restLength;
277 public void setRestLength(float restLength) {
278 this.restLength = restLength
    [all...]
PhysicsVehicle.java 503 float restLength = physicsVehicleWheel.getRestLength();
509 Arrow dirArrow = new Arrow(direction.normalizeLocal().multLocal(restLength));
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
VehicleControl.java 203 float restLength = physicsVehicleWheel.getRestLength();
218 dirArrow.setArrowExtent(direction.normalizeLocal().multLocal(restLength));

Completed in 844 milliseconds