public class Quaternion
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static Quaternion |
IDENTITY
A quaternion representing no rotation
|
float |
w
The W value of this Quaternion (scalar part)
|
float |
x
The X value of this Quaternion (vector part)
|
float |
y
The Y value of this Quaternion (vector part)
|
float |
z
The Z value of this Quaternion (vector part)
|
static Quaternion |
ZERO
An "empty" quaternion.
|
Constructor and Description |
---|
Quaternion() |
Quaternion(float x,
float y,
float z,
float w) |
Quaternion(Quaternion copy) |
Modifier and Type | Method and Description |
---|---|
float |
dot(Quaternion quaternion)
Gets the dot product of this quaternion with the provided quaternion.
|
boolean |
equals(float x,
float y,
float z,
float w) |
boolean |
equals(java.lang.Object o)
Gets whether or not this quaternion is equal to another object.
|
Quaternion |
fromAngles(float[] angles)
Calculates this quaternion from the given Euler rotation angles
(pitch, yaw, roll) aka (attitude, heading, bank) aka (x, y, z).
|
Quaternion |
fromAngles(float pitch,
float yaw,
float roll)
Calculates this quaternion from the given Euler rotation angles
(pitch, yaw, roll) aka (attitude, heading, bank) aka (x, y, z).
|
Quaternion |
fromRotationMatrix(float m00,
float m01,
float m02,
float m10,
float m11,
float m12,
float m20,
float m21,
float m22)
Builds this quaternion from a rotational matrix.
|
Quaternion |
fromString(java.lang.String input) |
float |
getW()
Returns the W value of this Quaternion.
|
float |
getX()
Returns the X value of this Quaternion.
|
float |
getY()
Returns the Y value of this Quaternion.
|
float |
getZ()
Returns the Z value of this Quaternion.
|
int |
hashCode()
Gets a unique* hash code for this quaternion, based on its values.
|
boolean |
isNaN()
Checks if this quaternion is invalid, or more precisely, if any of its values
is NaN (not a number).
|
Quaternion |
loadIdentity()
Sets this quaternion to 0, 0, 0, 1.
|
Quaternion |
lookAt(float directionx,
float directiony,
float directionz)
"Looks at" a given direction, i.e. the quaternion will be set based on the
direction.
|
Quaternion |
lookAt(Vector3f direction)
"Looks at" a given direction, i.e. the quaternion will be set based on the
direction.
|
Quaternion |
lookAt(Vector3f direction,
Vector3f up)
"Looks at" a given direction, i.e. the quaternion will be set based on the
direction and an up vector.
|
Quaternion |
multLocal(float scalar)
Multiplies the quaternion by a scalar.
|
Quaternion |
multLocal(float qx,
float qy,
float qz,
float qw)
Multiplies this quaternion by the provided values.
|
Quaternion |
multLocal(Quaternion quaternion)
Multiplies this quaternion by the provided quaternion.
|
Vector3f |
multLocal(Vector3f vector)
Multiplies the quaternion by a Vector3f.
|
Quaternion |
negateLocal()
Negates the values of this quaternion.
|
float |
norm()
Gets the norm of this quaternion, i.e. the dot product of this quaternion
with itself.
|
Quaternion |
normalizeLocal()
Normalizes this quaternion.
|
Quaternion |
set(float x,
float y,
float z,
float w)
Sets the X, Y, Z and W values of this Quaternion to the provided values.
|
Quaternion |
set(Quaternion quaternion)
Sets the X, Y, Z and W values of this Quaternion to the values of the
provided quaternion.
|
Quaternion |
setW(float w)
Sets the Z value of this Quaternion.
|
Quaternion |
setX(float x)
Sets the X value of this Vector3f.
|
Quaternion |
setY(float y)
Sets the Y value of this Vector3f.
|
Quaternion |
setZ(float z)
Sets the Z value of this Quaternion.
|
float[] |
toAngles()
Calculates the according Euler rotation angles (pitch, yaw, roll) for this
quaternion and stores them in the provided float array.
|
float[] |
toAngles(float[] storeTo)
Calculates the according Euler rotation angles (pitch, yaw, roll) for this
quaternion and stores them in the provided float array.
|
java.lang.String |
toString()
Gets a String representation of this quaternion, for example
(0.0, 1.25, -0.7, 1.0) |
public static final Quaternion IDENTITY
public static final Quaternion ZERO
IDENTITY
public float x
public float y
public float z
public float w
public Quaternion()
public Quaternion(float x, float y, float z, float w)
public Quaternion(Quaternion copy)
public Quaternion set(Quaternion quaternion)
quaternion
- the Quaternion to copy.public Quaternion set(float x, float y, float z, float w)
x
- the X value.y
- the Y value.z
- the Z value.w
- the W value.public Quaternion setX(float x)
x
- the new X value.public Quaternion setY(float y)
y
- the new Y value.public Quaternion setZ(float z)
z
- the new Z value.public Quaternion setW(float w)
w
- the new W value.public float getX()
public float getY()
public float getZ()
public float getW()
public Quaternion loadIdentity()
public Quaternion fromAngles(float[] angles)
angles
- Euler rotation angles (pitch, yaw, roll) as a float array.public Quaternion fromAngles(float pitch, float yaw, float roll)
pitch
- Euler pitch (attitude) rotation in radians.yaw
- Euler yaw (heading) rotation in radians.roll
- Euler roll (bank) rotation in radians.public float[] toAngles()
public float[] toAngles(float[] storeTo)
storeTo
- the float array in which the angles should be stored. This
array needs to be able to hold at least three elements. If null is provided,
a new float array will be created.public Quaternion multLocal(Quaternion quaternion)
quaternion
- the quaternion to multiply this one by.public Quaternion multLocal(float qx, float qy, float qz, float qw)
qx
- the x compontent to multiply this quaternion by.qy
- the y compontent to multiply this quaternion by.qz
- the z compontent to multiply this quaternion by.qw
- the w compontent to multiply this quaternion by.public Vector3f multLocal(Vector3f vector)
vector
- the Vector3f to multiply this quaternion by.public Quaternion multLocal(float scalar)
scalar
- the scalar value.public Quaternion negateLocal()
public Quaternion normalizeLocal()
public float dot(Quaternion quaternion)
quaternion
- the quaternion to calculate the dot product with.public float norm()
public Quaternion lookAt(Vector3f direction)
direction
- the direction (where to "look at").public Quaternion lookAt(float directionx, float directiony, float directionz)
directionx
- the x component of the direction vector.directiony
- the y component of the direction vector.directionz
- the z component of the direction vector.public Quaternion lookAt(Vector3f direction, Vector3f up)
direction
- the direction (where to "look at").up
- the according up-vector, typically (0, 1, 0);public Quaternion fromRotationMatrix(float m00, float m01, float m02, float m10, float m11, float m12, float m20, float m21, float m22)
m00
- 0x0 in the rotational matrix.m01
- 0x1 in the rotational matrix.m02
- 0x2 in the rotational matrix.m10
- 1x0 in the rotational matrix.m11
- 1x1 in the rotational matrix.m12
- 1x2 in the rotational matrix.m20
- 2x0 in the rotational matrix.m21
- 2x1 in the rotational matrix.m22
- 2x2 in the rotational matrix.public boolean isNaN()
public boolean equals(float x, float y, float z, float w)
public boolean equals(java.lang.Object o)
Quaternion
and if it
has exactly the same x, y, z and w values.equals
in class java.lang.Object
o
- the object to compare for equality.Quaternion
and has the
same values as this quaternion, false if not.public int hashCode()
hashCode
in class java.lang.Object
public java.lang.String toString()
(0.0, 1.25, -0.7, 1.0)
toString
in class java.lang.Object
public Quaternion fromString(java.lang.String input)