TDME2 1.9.121
Rotation.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
7#include <tdme/math/Vector3.h>
8
11
12/**
13 * Rotation representation
14 * @author Andreas Drewke
15 * @version $Id$
16 */
18{
19
20public:
24
25private:
26 float angle;
29
30public:
31 /**
32 * Public constructor
33 */
34 Rotation();
35
36 /**
37 * Public constructor
38 * @param axis axis
39 * @param angle angle
40 */
41 Rotation(const Vector3& axis, float angle);
42
43 /**
44 * Interpolate from given rotation to target rotation taking time passed in seconds and rotation degrees per second into account
45 * @param rotationAngle current rotation angle
46 * @param targetRotationAngle target rotation angle
47 * @param timeSecondsPassed time seconds passed
48 * @param rotationDeegreePerSeconds rotation deegree per seconds
49 * @return computed rotation angle
50 */
51 static float interpolate(float rotationAngle, float targetRotationAngle, float timeSecondsPassed, float rotationDeegreePerSeconds);
52
53 /**
54 * @return angle
55 */
56 inline const float getAngle() const {
57 return angle;
58 }
59
60 /**
61 * @param angle angle
62 */
63 inline void setAngle(const float angle) {
64 this->angle = angle;
65 }
66
67 /**
68 * @return axis
69 */
70 inline const Vector3& getAxis() const {
71 return axis;
72 }
73
74 /**
75 * Set axis
76 * @param axis axis
77 */
78 inline void setAxis(const Vector3& axis) {
79 this->axis.set(axis);
80 }
81
82 /**
83 * @return quaternion
84 */
85 const Quaternion& getQuaternion() const {
86 return quaternion;
87 }
88
89 /**
90 * Sets up this rotation from another rotation
91 * @param rotation rotation
92 */
93 void fromRotation(const Rotation& rotation);
94
95 /**
96 * Sets up this rotation from quaternion, current quaternion will be lost, needs to get updated
97 * @param q q
98 */
99 void fromQuaternion(const Quaternion& q);
100
101 /**
102 * Computes rotation matrix
103 */
104 void update();
105
106};
Rotation representation.
Definition: Rotation.h:18
void setAngle(const float angle)
Definition: Rotation.h:63
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
const Vector3 & getAxis() const
Definition: Rotation.h:70
Rotation()
Public constructor.
Definition: Rotation.cpp:13
void setAxis(const Vector3 &axis)
Set axis.
Definition: Rotation.h:78
const Quaternion & getQuaternion() const
Definition: Rotation.h:85
void update()
Computes rotation matrix.
Definition: Rotation.cpp:54
const float getAngle() const
Definition: Rotation.h:56
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
Quaternion class.
Definition: Quaternion.h:22
3D vector 3 class
Definition: Vector3.h:22
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11