OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:getPhysicsLocation
(Results
1 - 20
of
20
) sorted by null
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
PhysicsGhostObject.java
139
public Vector3f
getPhysicsLocation
(Vector3f trans) {
143
getPhysicsLocation
(objectId, trans);
147
private native void
getPhysicsLocation
(long objectId, Vector3f vector);
178
public Vector3f
getPhysicsLocation
() {
180
getPhysicsLocation
(objectId, vec);
285
capsule.write(
getPhysicsLocation
(new Vector3f()), "physicsLocation", new Vector3f());
PhysicsCharacter.java
224
public Vector3f
getPhysicsLocation
(Vector3f trans) {
228
getPhysicsLocation
(objectId, trans);
232
private native void
getPhysicsLocation
(long objectId, Vector3f vec);
237
public Vector3f
getPhysicsLocation
() {
238
return
getPhysicsLocation
(null);
293
capsule.write(
getPhysicsLocation
(new Vector3f()), "physicsLocation", new Vector3f());
PhysicsRigidBody.java
173
public Vector3f
getPhysicsLocation
(Vector3f trans) {
177
getPhysicsLocation
(objectId, trans);
181
private native void
getPhysicsLocation
(long objectId, Vector3f vector);
212
public Vector3f
getPhysicsLocation
() {
214
getPhysicsLocation
(objectId, vec);
722
capsule.write(
getPhysicsLocation
(new Vector3f()), "physicsLocation", new Vector3f());
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
CharacterControl.java
73
control.setPhysicsLocation(
getPhysicsLocation
());
136
getPhysicsLocation
(localLocation);
147
spatial.setLocalTranslation(
getPhysicsLocation
());
159
debugShape.setLocalTranslation(
getPhysicsLocation
());
GhostControl.java
75
control.setPhysicsLocation(
getPhysicsLocation
());
RigidBodyControl.java
79
control.setPhysicsLocation(
getPhysicsLocation
(null));
VehicleControl.java
99
control.setPhysicsLocation(
getPhysicsLocation
());
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
PhysicsCharacter.java
204
public Vector3f
getPhysicsLocation
(Vector3f trans) {
216
public Vector3f
getPhysicsLocation
() {
271
capsule.write(
getPhysicsLocation
(new Vector3f()), "physicsLocation", new Vector3f());
PhysicsGhostObject.java
143
public Vector3f
getPhysicsLocation
(Vector3f trans) {
179
public Vector3f
getPhysicsLocation
() {
268
capsule.write(
getPhysicsLocation
(new Vector3f()), "physicsLocation", new Vector3f());
PhysicsRigidBody.java
184
public Vector3f
getPhysicsLocation
() {
185
return
getPhysicsLocation
(null);
199
public Vector3f
getPhysicsLocation
(Vector3f location) {
673
capsule.write(
getPhysicsLocation
(new Vector3f()), "physicsLocation", new Vector3f());
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestPhysicsCar.java
177
cam.lookAt(vehicle.
getPhysicsLocation
(), Vector3f.UNIT_Y);
TestQ3.java
137
cam.setLocation(player.
getPhysicsLocation
());
BombControl.java
97
ghostObject.setPhysicsLocation(
getPhysicsLocation
(vector));
120
rBody.
getPhysicsLocation
(vector2);
TestAttachDriver.java
244
cam.lookAt(vehicle.
getPhysicsLocation
(), Vector3f.UNIT_Y);
/external/jmonkeyengine/engine/src/test/jme3test/helloworld/
HelloCollision.java
176
cam.setLocation(player.
getPhysicsLocation
());
HelloTerrainCollision.java
221
cam.setLocation(player.
getPhysicsLocation
());
/external/jmonkeyengine/engine/src/test/jme3test/terrain/
TerrainGridSerializationTest.java
176
this.cam.setLocation(this.player3.
getPhysicsLocation
());
TerrainGridTest.java
236
this.cam.setLocation(this.player3.
getPhysicsLocation
());
TerrainGridTileLoaderTest.java
233
this.cam.setLocation(this.player3.
getPhysicsLocation
());
TerrainGridAlphaMapTest.java
325
this.cam.setLocation(this.player3.
getPhysicsLocation
());
Completed in 3229 milliseconds