OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isFrontWheel
(Results
1 - 5
of
5
) sorted by null
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
PhysicsVehicle.java
139
wheel.setVehicleId(vehicleId, addWheel(vehicleId, wheel.getLocation(), wheel.getDirection(), wheel.getAxle(), wheel.getRestLength(), wheel.getRadius(), tuning, wheel.
isFrontWheel
()));
158
* @param
isFrontWheel
sets if this wheel is a front wheel (steering)
161
public VehicleWheel addWheel(Vector3f connectionPoint, Vector3f direction, Vector3f axle, float suspensionRestLength, float wheelRadius, boolean
isFrontWheel
) {
162
return addWheel(null, connectionPoint, direction, axle, suspensionRestLength, wheelRadius,
isFrontWheel
);
173
* @param
isFrontWheel
sets if this wheel is a front wheel (steering)
176
public VehicleWheel addWheel(Spatial spat, Vector3f connectionPoint, Vector3f direction, Vector3f axle, float suspensionRestLength, float wheelRadius, boolean
isFrontWheel
) {
179
wheel = new VehicleWheel(connectionPoint, direction, axle, suspensionRestLength, wheelRadius,
isFrontWheel
);
181
wheel = new VehicleWheel(spat, connectionPoint, direction, axle, suspensionRestLength, wheelRadius,
isFrontWheel
);
191
wheel.setVehicleId(vehicleId, addWheel(vehicleId, wheel.getLocation(), wheel.getDirection(), wheel.getAxle(), wheel.getRestLength(), wheel.getRadius(), tuning, wheel.
isFrontWheel
()));
434
if (getWheel(i).
isFrontWheel
()) {
[
all
...]
VehicleWheel.java
131
public boolean
isFrontWheel
() {
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
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
...]
VehicleWheel.java
126
public boolean
isFrontWheel
() {
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
VehicleControl.java
112
VehicleWheel newWheel = control.addWheel(wheel.getLocation(), wheel.getDirection(), wheel.getAxle(), wheel.getRestLength(), wheel.getRadius(), wheel.
isFrontWheel
());
Completed in 124 milliseconds