Home
last modified time | relevance | path

Searched refs:wheelInfo (Results 1 – 3 of 3) sorted by relevance

/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
DVehicleWheel.java49 protected com.bulletphysics.dynamics.vehicle.WheelInfo wheelInfo; field in VehicleWheel
90 Converter.convert(wheelInfo.worldTransform.origin, wheelWorldLocation); in updatePhysicsState()
91 Converter.convert(wheelInfo.worldTransform.basis, tmp_Matrix); in updatePhysicsState()
118 return wheelInfo; in getWheelInfo()
121 public void setWheelInfo(com.bulletphysics.dynamics.vehicle.WheelInfo wheelInfo) { in setWheelInfo() argument
122 this.wheelInfo = wheelInfo; in setWheelInfo()
249 if (wheelInfo == null) { in applyInfo()
252 wheelInfo.suspensionStiffness = suspensionStiffness; in applyInfo()
253 wheelInfo.wheelsDampingRelaxation = wheelsDampingRelaxation; in applyInfo()
254 wheelInfo.wheelsDampingCompression = wheelsDampingCompression; in applyInfo()
[all …]
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/Vehicle/
DbtRaycastVehicle.cpp371 btWheelInfo& wheelInfo = getWheelInfo(wheel); in setSteeringValue() local
372 wheelInfo.m_steering = steering; in setSteeringValue()
386 btWheelInfo& wheelInfo = getWheelInfo(wheel); in applyEngineForce() local
387 wheelInfo.m_engineForce = force; in applyEngineForce()
546 btWheelInfo& wheelInfo = m_wheelInfo[i]; in updateFriction() local
547 class btRigidBody* groundObject = (class btRigidBody*) wheelInfo.m_raycastInfo.m_groundObject; in updateFriction()
560 btWheelInfo& wheelInfo = m_wheelInfo[i]; in updateFriction() local
562 class btRigidBody* groundObject = (class btRigidBody*) wheelInfo.m_raycastInfo.m_groundObject; in updateFriction()
575 const btVector3& surfNormalWS = wheelInfo.m_raycastInfo.m_contactNormalWS; in updateFriction()
584 resolveSingleBilateral(*m_chassisBody, wheelInfo.m_raycastInfo.m_contactPointWS, in updateFriction()
[all …]
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/
DVehicleTest.java106 btWheelInfo wheelInfo; in create() local
110wheelInfo = vehicle.addWheel(point.set(chassisHalfExtents).scl(0.9f, -0.8f, 0.7f), direction, axis, in create()
112wheelInfo = vehicle.addWheel(point.set(chassisHalfExtents).scl(-0.9f, -0.8f, 0.7f), direction, axi… in create()
114wheelInfo = vehicle.addWheel(point.set(chassisHalfExtents).scl(0.9f, -0.8f, -0.5f), direction, axi… in create()
116wheelInfo = vehicle.addWheel(point.set(chassisHalfExtents).scl(-0.9f, -0.8f, -0.5f), direction, ax… in create()