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

  /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/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-native/
com_jme3_bullet_objects_VehicleWheel.cpp 82 (JNIEnv *env, jobject object, jlong vehicleId, jint wheelIndex, jfloat suspensionStiffness, jfloat wheelsDampingRelaxation, jfloat wheelsDampingCompression, jfloat frictionSlip, jfloat rollInfluence, jfloat maxSuspensionTravelCm, jfloat maxSuspensionForce, jfloat radius, jboolean frontWheel, jfloat restLength) {
93 vehicle->getWheelInfo(wheelIndex).m_suspensionRestLength1 = restLength;
com_jme3_bullet_objects_PhysicsVehicle.cpp 130 (JNIEnv *env, jobject object, jlong vehicleId, jobject location, jobject direction, jobject axle, jfloat restLength, jfloat radius, jobject tuning, jboolean frontWheel) {
144 btWheelInfo* info = &vehicle->addWheel(vec1, vec2, vec3, restLength, radius, tune, frontWheel);
  /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 612 milliseconds