OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tempTrans
(Results
1 - 3
of
3
) sorted by null
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
PhysicsGhostObject.java
66
protected Transform
tempTrans
= new Transform(Converter.convert(new Matrix3f()));
108
gObject.getWorldTransform(
tempTrans
);
109
Converter.convert(location,
tempTrans
.origin);
110
gObject.setWorldTransform(
tempTrans
);
118
gObject.getWorldTransform(
tempTrans
);
119
Converter.convert(rotation,
tempTrans
.basis);
120
gObject.setWorldTransform(
tempTrans
);
128
gObject.getWorldTransform(
tempTrans
);
129
Converter.convert(rotation,
tempTrans
.basis);
130
gObject.setWorldTransform(
tempTrans
);
[
all
...]
PhysicsRigidBody.java
74
protected Transform
tempTrans
= new Transform(new javax.vecmath.Matrix3f());
153
rBody.getCenterOfMassTransform(
tempTrans
);
154
Converter.convert(location,
tempTrans
.origin);
155
rBody.setCenterOfMassTransform(
tempTrans
);
156
motionState.setWorldTransform(
tempTrans
);
164
rBody.getCenterOfMassTransform(
tempTrans
);
165
Converter.convert(rotation,
tempTrans
.basis);
166
rBody.setCenterOfMassTransform(
tempTrans
);
167
motionState.setWorldTransform(
tempTrans
);
175
rBody.getCenterOfMassTransform(
tempTrans
);
[
all
...]
PhysicsCharacter.java
67
private Transform
tempTrans
= new Transform(Converter.convert(new Matrix3f()));
208
gObject.getWorldTransform(
tempTrans
);
209
Converter.convert(
tempTrans
.origin, physicsLocation.getTranslation());
217
gObject.getWorldTransform(
tempTrans
);
218
Converter.convert(
tempTrans
.origin, physicsLocation.getTranslation());
Completed in 35 milliseconds