OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:wheels
(Results
1 - 2
of
2
) sorted by null
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
PhysicsVehicle.java
61
* The collision detection of the
wheels
is approximated by ray casts,
71
protected ArrayList<VehicleWheel>
wheels
= new ArrayList<VehicleWheel>();
field in class:PhysicsVehicle
90
for (int i = 0; i <
wheels
.size(); i++) {
92
wheels
.get(i).updatePhysicsState();
103
if (
wheels
!= null) {
104
for (int i = 0; i <
wheels
.size(); i++) {
105
wheels
.get(i).applyWheelTransform();
138
for (VehicleWheel wheel :
wheels
) {
189
wheels
.add(wheel);
204
wheels
.remove(wheel)
[
all
...]
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
PhysicsVehicle.java
61
* The collision detection of the
wheels
is approximated by ray casts,
71
protected ArrayList<VehicleWheel>
wheels
= new ArrayList<VehicleWheel>();
field in class:PhysicsVehicle
90
for (int i = 0; i <
wheels
.size(); i++) {
92
wheels
.get(i).updatePhysicsState();
101
if (
wheels
!= null) {
102
for (int i = 0; i <
wheels
.size(); i++) {
103
wheels
.get(i).applyWheelTransform();
132
for (VehicleWheel wheel :
wheels
) {
181
wheels
.add(wheel);
194
wheels
.remove(wheel)
[
all
...]
Completed in 114 milliseconds