Home
last modified time | relevance | path

Searched refs:frontWheel (Results 1 – 5 of 5) sorted by relevance

/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
DVehicleWheel.java50 protected boolean frontWheel; field in VehicleWheel
74 float restLength, float radius, boolean frontWheel) { in VehicleWheel() argument
75 this(location, direction, axle, restLength, radius, frontWheel); in VehicleWheel()
80 float restLength, float radius, boolean frontWheel) { in VehicleWheel() argument
84 this.frontWheel = frontWheel; in VehicleWheel()
132 return frontWheel; in isFrontWheel()
135 public void setFrontWheel(boolean frontWheel) { in setFrontWheel() argument
136 this.frontWheel = frontWheel; in setFrontWheel()
257 …ionSlip, rollInfluence, maxSuspensionTravelCm, maxSuspensionForce, radius, frontWheel, restLength); in applyInfo()
269 boolean frontWheel, in applyInfo() argument
[all …]
DPhysicsVehicle.java149 …irection, Vector3f axle, float restLength, float radius, VehicleTuning tuning, boolean frontWheel); in addWheel() argument
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
DVehicleWheel.java50 protected boolean frontWheel; field in VehicleWheel
74 float restLength, float radius, boolean frontWheel) { in VehicleWheel() argument
75 this(location, direction, axle, restLength, radius, frontWheel); in VehicleWheel()
80 float restLength, float radius, boolean frontWheel) { in VehicleWheel() argument
84 this.frontWheel = frontWheel; in VehicleWheel()
127 return frontWheel; in isFrontWheel()
130 public void setFrontWheel(boolean frontWheel) { in setFrontWheel() argument
131 this.frontWheel = frontWheel; in setFrontWheel()
260 wheelInfo.bIsFrontWheel = frontWheel; in applyInfo()
347 frontWheel = capsule.readBoolean("frontWheel", false); in read()
[all …]
/external/jmonkeyengine/engine/src/bullet-native/
Dcom_jme3_bullet_objects_VehicleWheel.cpp82 …SuspensionTravelCm, jfloat maxSuspensionForce, jfloat radius, jboolean frontWheel, jfloat restLeng… in Java_com_jme3_bullet_objects_VehicleWheel_applyInfo() argument
92 vehicle->getWheelInfo(wheelIndex).m_bIsFrontWheel = frontWheel; in Java_com_jme3_bullet_objects_VehicleWheel_applyInfo()
Dcom_jme3_bullet_objects_PhysicsVehicle.cpp130 …t direction, jobject axle, jfloat restLength, jfloat radius, jobject tuning, jboolean frontWheel) { in Java_com_jme3_bullet_objects_PhysicsVehicle_addWheel() argument
144 … btWheelInfo* info = &vehicle->addWheel(vec1, vec2, vec3, restLength, radius, tune, frontWheel); in Java_com_jme3_bullet_objects_PhysicsVehicle_addWheel()