16 this->
axis.
set(0.0f, 0.0f, 0.0f);
45 this->
angle = 2.0f * Math::acos(quaterionXYZ[3]) / 3.1415927f * 180.0f;
46 auto s = Math::sqrt(1.0f - quaterionXYZ[3] * quaterionXYZ[3]);
48 this->
axis.
set(quaterionXYZ[0], quaterionXYZ[1], quaterionXYZ[2]);
50 this->
axis.
set(quaterionXYZ[0] / s, quaterionXYZ[1] / s, quaterionXYZ[2] / s);
60float Rotation::interpolate(
float rotationAngle,
float targetRotationAngle,
float timeSecondsPassed,
float rotationDeegreePerSeconds) {
61 rotationAngle = Math::absmod(rotationAngle, 360.0f);
62 targetRotationAngle = Math::absmod(targetRotationAngle, 360.0f);
63 auto targetRotationAngleA = targetRotationAngle;
64 auto targetRotationAngleB = targetRotationAngle - 360.0f;
65 auto targetRotationAngleC = targetRotationAngle + 360.0f;
66 if (Math::abs(targetRotationAngleA - rotationAngle) < Math::abs(targetRotationAngleB - rotationAngle) &&
67 Math::abs(targetRotationAngleA - rotationAngle) < Math::abs(targetRotationAngleC - rotationAngle)) {
68 targetRotationAngle = targetRotationAngleA;
70 if (Math::abs(targetRotationAngleB - rotationAngle) < Math::abs(targetRotationAngleA - rotationAngle) &&
71 Math::abs(targetRotationAngleB - rotationAngle) < Math::abs(targetRotationAngleC - rotationAngle)) {
72 targetRotationAngle = targetRotationAngleB;
74 if (Math::abs(targetRotationAngleC - rotationAngle) < Math::abs(targetRotationAngleA - rotationAngle) &&
75 Math::abs(targetRotationAngleC - rotationAngle) < Math::abs(targetRotationAngleB - rotationAngle)) {
76 targetRotationAngle = targetRotationAngleC;
78 if (Math::abs(rotationAngle - targetRotationAngle) < 0.1f) {
79 return targetRotationAngle;
81 auto rotationAdd = timeSecondsPassed * rotationDeegreePerSeconds * Math::sign(targetRotationAngle - rotationAngle);
82 if (rotationAngle < targetRotationAngle && rotationAngle + rotationAdd > targetRotationAngle) {
83 rotationAngle = targetRotationAngle;
85 if (rotationAngle > targetRotationAngle && rotationAngle + rotationAdd < targetRotationAngle) {
86 rotationAngle = targetRotationAngle;
88 rotationAngle+= rotationAdd;
void fromRotation(const Rotation &rotation)
Sets up this rotation from another rotation.
static STATIC_DLL_IMPEXT Vector3 Y_AXIS
void fromQuaternion(const Quaternion &q)
Sets up this rotation from quaternion, current quaternion will be lost, needs to get updated.
Rotation()
Public constructor.
void update()
Computes rotation matrix.
static STATIC_DLL_IMPEXT Vector3 X_AXIS
static float interpolate(float rotationAngle, float targetRotationAngle, float timeSecondsPassed, float rotationDeegreePerSeconds)
Interpolate from given rotation to target rotation taking time passed in seconds and rotation degrees...
static STATIC_DLL_IMPEXT Vector3 Z_AXIS
Quaternion & rotate(const Vector3 &axis, float angle)
Creates a rotation quaternion.
array< float, 4 > & getArray() const
Returns array data.
Quaternion & identity()
Set up quaternion identity.
Quaternion & set(float x, float y, float z, float w)
Set up this quaternion by components.
Quaternion & normalize()
Normalize quaternion.
Vector3 & set(float x, float y, float z)
Set up vector.