Uses of Class
quicktime.qd3d.math.Quaternion

Packages that use Quaternion
quicktime.qd3d.math   
 

Uses of Quaternion in quicktime.qd3d.math
 

Methods in quicktime.qd3d.math that return Quaternion
 Quaternion Quaternion.copy()
          Returns a copy of the quaternion.
 Quaternion Quaternion.invert()
          Returns the inverse of the quaternion.
 Quaternion Quaternion.multiply(Quaternion q2)
          Returns the product of the two quaternions, this and q2.
 Quaternion Quaternion.normalize()
          Returns a normalized the quaternion.
 Quaternion Quaternion.matchReflection(Quaternion q2)
          Returns a quaternion that is either identical to the quaternion specified by the q1 parameter or is the negative of q1, depending on whether q1 or its negative matches the orientation of the quaternion specified by the q2 parameter.
 Quaternion Quaternion.interpolateFast(Quaternion q2, float t)
          Return a a quaternion that is a fast interpolation between the this and the specified quaternion.
 Quaternion Quaternion.interpolateLinear(Quaternion q2, float t)
          Return a a quaternion that is a linear interpolation between the this and the specified quaternion.
 

Methods in quicktime.qd3d.math with parameters of type Quaternion
 Vector3D Vector3D.transformQuaternion(Quaternion quaternion)
          Return a three-dimensional vector that is the result of transforming the vector specified by the vector parameter using the quaternion specified by the quaternion parameter.
 void Matrix4x4.setQuaternion(Quaternion quaternion)
          Sets a 4-by-4 matrix that represents the quaternion specified by the quaternion parameter.
 Quaternion Quaternion.multiply(Quaternion q2)
          Returns the product of the two quaternions, this and q2.
 float Quaternion.dot(Quaternion q2)
          Returns the dot product of two quaternions, this and q2.
 Quaternion Quaternion.matchReflection(Quaternion q2)
          Returns a quaternion that is either identical to the quaternion specified by the q1 parameter or is the negative of q1, depending on whether q1 or its negative matches the orientation of the quaternion specified by the q2 parameter.
 Quaternion Quaternion.interpolateFast(Quaternion q2, float t)
          Return a a quaternion that is a fast interpolation between the this and the specified quaternion.
 Quaternion Quaternion.interpolateLinear(Quaternion q2, float t)
          Return a a quaternion that is a linear interpolation between the this and the specified quaternion.
 Point3D Point3D.transformQuaternion(Quaternion quaternion)
          Return a three-dimensional point that is the result of transforming the vector specified by the vector parameter using the quaternion specified by the quaternion parameter.