TDME2 1.9.121
Rotation.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
4#include <tdme/math/Math.h>
6#include <tdme/math/Vector3.h>
7
12
13Rotation::Rotation()
14{
15 this->angle = 0.0f;
16 this->axis.set(0.0f, 0.0f, 0.0f);
17 this->quaternion.identity();
18}
19
20Rotation::Rotation(const Vector3& axis, float angle)
21{
22 this->angle = angle;
23 this->axis.set(axis);
24 this->quaternion.identity();
25}
26
27Vector3 Rotation::X_AXIS(1.0f, 0.0f, 0.0f);
28
29Vector3 Rotation::Y_AXIS(0.0f, 1.0f, 0.0f);
30
31Vector3 Rotation::Z_AXIS(0.0f, 0.0f, 1.0f);
32
33void Rotation::fromRotation(const Rotation& rotation)
34{
35 angle = rotation.angle;
36 axis.set(rotation.axis);
37 quaternion.set(rotation.quaternion);
38}
39
41{
42 quaternion.set(q);
44 auto& quaterionXYZ = quaternion.getArray();
45 this->angle = 2.0f * Math::acos(quaterionXYZ[3]) / 3.1415927f * 180.0f;
46 auto s = Math::sqrt(1.0f - quaterionXYZ[3] * quaterionXYZ[3]);
47 if (s < 0.0010f) {
48 this->axis.set(quaterionXYZ[0], quaterionXYZ[1], quaterionXYZ[2]);
49 } else {
50 this->axis.set(quaterionXYZ[0] / s, quaterionXYZ[1] / s, quaterionXYZ[2] / s);
51 }
52}
53
55{
58}
59
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;
69 } else
70 if (Math::abs(targetRotationAngleB - rotationAngle) < Math::abs(targetRotationAngleA - rotationAngle) &&
71 Math::abs(targetRotationAngleB - rotationAngle) < Math::abs(targetRotationAngleC - rotationAngle)) {
72 targetRotationAngle = targetRotationAngleB;
73 } else
74 if (Math::abs(targetRotationAngleC - rotationAngle) < Math::abs(targetRotationAngleA - rotationAngle) &&
75 Math::abs(targetRotationAngleC - rotationAngle) < Math::abs(targetRotationAngleB - rotationAngle)) {
76 targetRotationAngle = targetRotationAngleC;
77 }
78 if (Math::abs(rotationAngle - targetRotationAngle) < 0.1f) {
79 return targetRotationAngle;
80 } else {
81 auto rotationAdd = timeSecondsPassed * rotationDeegreePerSeconds * Math::sign(targetRotationAngle - rotationAngle);
82 if (rotationAngle < targetRotationAngle && rotationAngle + rotationAdd > targetRotationAngle) {
83 rotationAngle = targetRotationAngle;
84 } else
85 if (rotationAngle > targetRotationAngle && rotationAngle + rotationAdd < targetRotationAngle) {
86 rotationAngle = targetRotationAngle;
87 } else {
88 rotationAngle+= rotationAdd;
89 }
90 return rotationAngle;
91 }
92}
Rotation representation.
Definition: Rotation.h:18
void fromRotation(const Rotation &rotation)
Sets up this rotation from another rotation.
Definition: Rotation.cpp:33
static STATIC_DLL_IMPEXT Vector3 Y_AXIS
Definition: Rotation.h:22
void fromQuaternion(const Quaternion &q)
Sets up this rotation from quaternion, current quaternion will be lost, needs to get updated.
Definition: Rotation.cpp:40
Rotation()
Public constructor.
Definition: Rotation.cpp:13
void update()
Computes rotation matrix.
Definition: Rotation.cpp:54
static STATIC_DLL_IMPEXT Vector3 X_AXIS
Definition: Rotation.h:21
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...
Definition: Rotation.cpp:60
static STATIC_DLL_IMPEXT Vector3 Z_AXIS
Definition: Rotation.h:23
Quaternion quaternion
Definition: Rotation.h:28
Standard math functions.
Definition: Math.h:21
Quaternion class.
Definition: Quaternion.h:22
Quaternion & rotate(const Vector3 &axis, float angle)
Creates a rotation quaternion.
Definition: Quaternion.h:196
array< float, 4 > & getArray() const
Returns array data.
Definition: Quaternion.h:324
Quaternion & identity()
Set up quaternion identity.
Definition: Quaternion.h:171
Quaternion & set(float x, float y, float z, float w)
Set up this quaternion by components.
Definition: Quaternion.h:68
Quaternion & normalize()
Normalize quaternion.
Definition: Quaternion.h:213
3D vector 3 class
Definition: Vector3.h:22
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73