Home
last modified time | relevance | path

Searched refs:tempTrans (Results 1 – 4 of 4) 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()
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
DTransliteratorTest.java489 …Transliterator tempTrans = Transliterator.createFromRules("temp", "x > y; x{a} > b; ", Translitera… in TestFiltering() local
490 tempTrans.setFilter(new UnicodeSet("[a]")); in TestFiltering()
491 String tempResult = tempTrans.transform("xa"); in TestFiltering()
494tempTrans = Transliterator.createFromRules("temp", "::[a]; x > y; x{a} > b; ", Transliterator.FORW… in TestFiltering()
495 tempResult = tempTrans.transform("xa"); in TestFiltering()