OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isFrontWheel
(Results
1 - 3
of
3
) sorted by null
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
VehicleWheel.java
131
public boolean
isFrontWheel
() {
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
VehicleWheel.java
126
public boolean
isFrontWheel
() {
PhysicsVehicle.java
134
wheel.getRestLength(), wheel.getRadius(), tuning, wheel.
isFrontWheel
()));
145
* @param
isFrontWheel
sets if this wheel is a front wheel (steering)
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
);
160
* @param
isFrontWheel
sets if this wheel is a front wheel (steering)
163
public VehicleWheel addWheel(Spatial spat, Vector3f connectionPoint, Vector3f direction, Vector3f axle, float suspensionRestLength, float wheelRadius, boolean
isFrontWheel
) {
166
wheel = new VehicleWheel(connectionPoint, direction, axle, suspensionRestLength, wheelRadius,
isFrontWheel
);
168
wheel = new VehicleWheel(spat, connectionPoint, direction, axle, suspensionRestLength, wheelRadius,
isFrontWheel
);
172
suspensionRestLength, wheelRadius, tuning,
isFrontWheel
);
419
if (getWheel(i).
isFrontWheel
()) {
[
all
...]
Completed in 519 milliseconds