OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:frontWheel
(Results
1 - 5
of
5
) sorted by null
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
VehicleWheel.java
50
protected boolean
frontWheel
;
74
float restLength, float radius, boolean
frontWheel
) {
75
this(location, direction, axle, restLength, radius,
frontWheel
);
80
float restLength, float radius, boolean
frontWheel
) {
84
this.
frontWheel
=
frontWheel
;
132
return
frontWheel
;
135
public void setFrontWheel(boolean
frontWheel
) {
136
this.
frontWheel
=
frontWheel
;
[
all
...]
PhysicsVehicle.java
149
private native int addWheel(long objectId, Vector3f location, Vector3f direction, Vector3f axle, float restLength, float radius, VehicleTuning tuning, boolean
frontWheel
);
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
VehicleWheel.java
50
protected boolean
frontWheel
;
74
float restLength, float radius, boolean
frontWheel
) {
75
this(location, direction, axle, restLength, radius,
frontWheel
);
80
float restLength, float radius, boolean
frontWheel
) {
84
this.
frontWheel
=
frontWheel
;
127
return
frontWheel
;
130
public void setFrontWheel(boolean
frontWheel
) {
131
this.
frontWheel
=
frontWheel
;
[
all
...]
/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) {
92
vehicle->getWheelInfo(wheelIndex).m_bIsFrontWheel =
frontWheel
;
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
);
Completed in 362 milliseconds