Uses of Class
jme.math.Quaternion

Packages that use Quaternion
jme.math   
 

Uses of Quaternion in jme.math
 

Methods in jme.math that return Quaternion
 Quaternion Quaternion.slerp(Quaternion q1, Quaternion q2, float t)
          slerp sets this quaternion's value as an interpolation between two other quaternions.
 Quaternion Quaternion.add(Quaternion q)
          add adds the values of this quaternion to those of the parameter quaternion.
 Quaternion Quaternion.subtract(Quaternion q)
          subtract subtracts the values of the parameter quaternion from those of this quaternion.
 Quaternion Quaternion.mult(Quaternion q)
          mult multiplies this quaternion by a parameter quaternion.
 Quaternion Quaternion.mult(float scalar)
          mult multiplies this quaternion by a parameter scalar.
 Quaternion Quaternion.inverse()
          inverse returns the inverse of this quaternion as a new quaternion.
 

Methods in jme.math with parameters of type Quaternion
 void Matrix.set(Quaternion quaternion)
           
 void Matrix.setRotationQuaternion(Quaternion quat)
          setRotationQuaternion builds a rotation from a Quaternion.
 Quaternion Quaternion.slerp(Quaternion q1, Quaternion q2, float t)
          slerp sets this quaternion's value as an interpolation between two other quaternions.
 Quaternion Quaternion.add(Quaternion q)
          add adds the values of this quaternion to those of the parameter quaternion.
 Quaternion Quaternion.subtract(Quaternion q)
          subtract subtracts the values of the parameter quaternion from those of this quaternion.
 Quaternion Quaternion.mult(Quaternion q)
          mult multiplies this quaternion by a parameter quaternion.
 float Quaternion.dot(Quaternion q)
          dot calculates and returns the dot product of this quaternion with that of the parameter quaternion.
 

Constructors in jme.math with parameters of type Quaternion
Quaternion(Quaternion q1, Quaternion q2, float interp)
          Constructor instantiates a new Quaternion object from an interpolation between two other quaternions.
Quaternion(Quaternion q)
          Constructor instantiates a new Quaternion object from an existing quaternion, creating a copy.