Home
last modified time | relevance | path

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

/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
DPhysicsGhostObject.java66 protected Transform tempTrans = new Transform(Converter.convert(new Matrix3f())); field in PhysicsGhostObject
108 gObject.getWorldTransform(tempTrans); in setPhysicsLocation()
109 Converter.convert(location, tempTrans.origin); in setPhysicsLocation()
110 gObject.setWorldTransform(tempTrans); in setPhysicsLocation()
118 gObject.getWorldTransform(tempTrans); in setPhysicsRotation()
119 Converter.convert(rotation, tempTrans.basis); in setPhysicsRotation()
120 gObject.setWorldTransform(tempTrans); in setPhysicsRotation()
128 gObject.getWorldTransform(tempTrans); in setPhysicsRotation()
129 Converter.convert(rotation, tempTrans.basis); in setPhysicsRotation()
130 gObject.setWorldTransform(tempTrans); in setPhysicsRotation()
[all …]
DPhysicsRigidBody.java74 protected Transform tempTrans = new Transform(new javax.vecmath.Matrix3f()); field in PhysicsRigidBody
153 rBody.getCenterOfMassTransform(tempTrans); in setPhysicsLocation()
154 Converter.convert(location, tempTrans.origin); in setPhysicsLocation()
155 rBody.setCenterOfMassTransform(tempTrans); in setPhysicsLocation()
156 motionState.setWorldTransform(tempTrans); in setPhysicsLocation()
164 rBody.getCenterOfMassTransform(tempTrans); in setPhysicsRotation()
165 Converter.convert(rotation, tempTrans.basis); in setPhysicsRotation()
166 rBody.setCenterOfMassTransform(tempTrans); in setPhysicsRotation()
167 motionState.setWorldTransform(tempTrans); in setPhysicsRotation()
175 rBody.getCenterOfMassTransform(tempTrans); in setPhysicsRotation()
[all …]
DPhysicsCharacter.java67 private Transform tempTrans = new Transform(Converter.convert(new Matrix3f())); field in PhysicsCharacter
208 gObject.getWorldTransform(tempTrans); in getPhysicsLocation()
209 Converter.convert(tempTrans.origin, physicsLocation.getTranslation()); in getPhysicsLocation()
217 gObject.getWorldTransform(tempTrans); in getPhysicsLocation()
218 Converter.convert(tempTrans.origin, physicsLocation.getTranslation()); in getPhysicsLocation()