OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fromAxes
(Results
1 - 5
of
5
) sorted by null
/external/jmonkeyengine/engine/src/core/com/jme3/math/
Quaternion.java
67
DIRECTION_Z.
fromAxes
(Vector3f.UNIT_X, Vector3f.UNIT_Y, Vector3f.UNIT_Z);
869
* <code>
fromAxes
</code> creates a <code>Quaternion</code> that
879
public Quaternion
fromAxes
(Vector3f[] axis) {
884
return
fromAxes
(axis[0], axis[1], axis[2]);
889
* <code>
fromAxes
</code> creates a <code>Quaternion</code> that
899
public Quaternion
fromAxes
(Vector3f xAxis, Vector3f yAxis, Vector3f zAxis) {
[
all
...]
Matrix3f.java
615
public void
fromAxes
(Vector3f uAxis, Vector3f vAxis, Vector3f wAxis) {
[
all
...]
/external/jmonkeyengine/engine/src/core/com/jme3/input/
FlyByCamera.java
265
q.
fromAxes
(left, up, dir);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
BillboardControl.java
194
orient.
fromAxes
(left, camera.getUp(), look);
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/
Camera.java
708
this.rotation.
fromAxes
(left, up, direction);
798
this.rotation.
fromAxes
(left, up, direction);
837
this.rotation.
fromAxes
(newLeft, newUp, newDirection);
[
all
...]
Completed in 106 milliseconds