OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getRotationColumn
(Results
1 - 4
of
4
) sorted by null
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
Listener.java
86
return rotation.
getRotationColumn
(0);
90
return rotation.
getRotationColumn
(1);
94
return rotation.
getRotationColumn
(2);
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/
Camera.java
606
return rotation.
getRotationColumn
(2);
616
return rotation.
getRotationColumn
(0);
626
return rotation.
getRotationColumn
(1);
637
return rotation.
getRotationColumn
(2, store);
647
return rotation.
getRotationColumn
(0, store);
657
return rotation.
getRotationColumn
(1, store);
674
* cam.setLeft(rotation.
getRotationColumn
(0));<br>
675
* cam.setUp(rotation.
getRotationColumn
(1));<br>
676
* cam.setDirection(rotation.
getRotationColumn
(2));<br>
[
all
...]
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestHoveringTank.java
166
Vector3f dir = rot.
getRotationColumn
(2);
223
Vector3f dir = rot.
getRotationColumn
(2);
/external/jmonkeyengine/engine/src/core/com/jme3/math/
Quaternion.java
477
* <code>
getRotationColumn
</code> returns one of three columns specified
485
public Vector3f
getRotationColumn
(int i) {
486
return
getRotationColumn
(i, null);
490
* <code>
getRotationColumn
</code> returns one of three columns specified
501
public Vector3f
getRotationColumn
(int i, Vector3f store) {
[
all
...]
Completed in 84 milliseconds