Searched defs:vehicle (Results 1 - 4 of 4) sorted by relevance

/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/
H A DVehicleTest.java46 public btRaycastVehicle vehicle; field in class:VehicleTest
97 // Create the vehicle
100 vehicle = new btRaycastVehicle(tuning, (btRigidBody)chassis.body, raycaster);
102 ((btDynamicsWorld)world.collisionWorld).addVehicle(vehicle);
104 vehicle.setCoordinateSystem(0, 1, 2);
110 wheelInfo = vehicle.addWheel(point.set(chassisHalfExtents).scl(0.9f, -0.8f, 0.7f), direction, axis,
112 wheelInfo = vehicle.addWheel(point.set(chassisHalfExtents).scl(-0.9f, -0.8f, 0.7f), direction, axis,
114 wheelInfo = vehicle.addWheel(point.set(chassisHalfExtents).scl(0.9f, -0.8f, -0.5f), direction, axis,
116 wheelInfo = vehicle.addWheel(point.set(chassisHalfExtents).scl(-0.9f, -0.8f, -0.5f), direction, axis,
141 vehicle
[all...]
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/Dynamics/
H A DbtDynamicsWorld.h139 virtual void addVehicle(btActionInterface* vehicle) {(void)vehicle;} argument
141 virtual void removeVehicle(btActionInterface* vehicle) {(void)vehicle;} argument
H A DbtDiscreteDynamicsWorld.cpp514 ///update vehicle simulation
688 void btDiscreteDynamicsWorld::addVehicle(btActionInterface* vehicle) argument
690 addAction(vehicle);
693 void btDiscreteDynamicsWorld::removeVehicle(btActionInterface* vehicle) argument
695 removeAction(vehicle);
/external/libgdx/extensions/gdx-bullet/jni/swig-src/dynamics/com/badlogic/gdx/physics/bullet/dynamics/
H A DbtDynamicsWorld.java168 public void addVehicle(btActionInterface vehicle) { argument
169 DynamicsJNI.btDynamicsWorld_addVehicle(swigCPtr, this, btActionInterface.getCPtr(vehicle), vehicle);
172 public void removeVehicle(btActionInterface vehicle) { argument
173 DynamicsJNI.btDynamicsWorld_removeVehicle(swigCPtr, this, btActionInterface.getCPtr(vehicle), vehicle);

Completed in 249 milliseconds