Holds a quaternion (a 3D vector and a scalar value). More...
#include <juce_Quaternion.h>
Public Member Functions | |
Quaternion () noexcept | |
Quaternion (const Quaternion &other) noexcept | |
Quaternion (Vector3D< Type > vectorPart, Type scalarPart) noexcept | |
Quaternion (Type x, Type y, Type z, Type w) noexcept | |
Matrix3D< Type > | getRotationMatrix () const noexcept |
Returns the matrix that will perform the rotation specified by this quaternion. More... | |
Type | length () const noexcept |
Type | normal () const noexcept |
Quaternion | normalised () const noexcept |
Quaternion & | operator*= (Quaternion other) noexcept |
Quaternion & | operator= (Quaternion other) noexcept |
Static Public Member Functions | |
static Quaternion | fromAngle (Type angle, Vector3D< Type > axis) noexcept |
Creates a quaternion from an angle and an axis. More... | |
Public Attributes | |
Type | scalar |
The scalar part of the quaternion. More... | |
Vector3D< Type > | vector |
The vector part of the quaternion. More... | |
Holds a quaternion (a 3D vector and a scalar value).
{OpenGL}
|
inlinenoexcept |
Referenced by juce::Quaternion< float >::fromAngle(), and juce::Quaternion< float >::normalised().
|
inlinenoexcept |
|
inlinenoexcept |
|
inlinenoexcept |
|
inlinestaticnoexcept |
Creates a quaternion from an angle and an axis.
|
inlinenoexcept |
Returns the matrix that will perform the rotation specified by this quaternion.
Referenced by juce::Draggable3DOrientation::getRotationMatrix().
|
inlinenoexcept |
Referenced by juce::Quaternion< float >::normalised().
|
inlinenoexcept |
Referenced by juce::Quaternion< float >::getRotationMatrix(), and juce::Quaternion< float >::length().
|
inlinenoexcept |
|
inlinenoexcept |
|
inlinenoexcept |
Type juce::Quaternion< Type >::scalar |
The scalar part of the quaternion.
Referenced by juce::Quaternion< float >::getRotationMatrix(), juce::Quaternion< float >::normal(), juce::Quaternion< float >::normalised(), juce::Quaternion< float >::operator*=(), and juce::Quaternion< float >::operator=().
Vector3D<Type> juce::Quaternion< Type >::vector |
The vector part of the quaternion.
Referenced by juce::Quaternion< float >::getRotationMatrix(), juce::Quaternion< float >::normal(), juce::Quaternion< float >::normalised(), juce::Quaternion< float >::operator*=(), and juce::Quaternion< float >::operator=().