TDME2 1.9.121
Matrix2D3x3.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4
5#include <tdme/tdme.h>
7#include <tdme/math/Math.h>
8#include <tdme/math/Vector2.h>
9
10using std::array;
11
14
15/**
16 * 3x3 2D Matrix class
17 * @see http://learnwebgl.brown37.net/10_surface_properties/texture_mapping_transforms.html
18 * @author Andreas Drewke
19 * @version $Id$
20 */
22{
23private:
24 array<float, 9> data;
25
26public:
27 /**
28 * Public constructor
29 */
30 inline Matrix2D3x3() {
31 data.fill(0.0f);
32 }
33
34 /**
35 * Public constructor
36 * @param m matrix as float values
37 */
38 inline Matrix2D3x3(const array<float, 9>& m) {
39 data = m;
40 }
41
42 /**
43 * Public constructor
44 * @param matrix matrix
45 */
46 inline Matrix2D3x3(const Matrix2D3x3& matrix) {
47 data = matrix.data;
48 }
49
50 /**
51 * Public constructor
52 * @param r0c0 r0c0
53 * @param r1c0 r1c0
54 * @param r2c0 r2c0
55 * @param r0c1 r0c1
56 * @param r1c1 r1c1
57 * @param r2c1 r2c1
58 * @param r0c2 r0c2
59 * @param r1c2 r1c2
60 * @param r2c2 r2c2
61 */
62 inline Matrix2D3x3(float r0c0, float r1c0, float r2c0, float r0c1, float r1c1, float r2c1, float r0c2, float r1c2, float r2c2) {
63 set(r0c0, r1c0, r2c0, r0c1, r1c1, r2c1, r0c2, r1c2, r2c2);
64 }
65
66 /**
67 * Set up matrix by values
68 * @param r0c0 row 0, column 0
69 * @param r1c0 row 1, column 0
70 * @param r2c0 row 2, column 0
71 * @param r0c1 row 0, column 1
72 * @param r1c1 row 1, column 1
73 * @param r2c1 row 2, column 1
74 * @param r0c2 row 0, column 2
75 * @param r1c2 row 1, column 2
76 * @param r2c2 row 2, column 2
77 * @return this matrix
78 */
79 inline Matrix2D3x3& set(float r0c0, float r1c0, float r2c0, float r0c1, float r1c1, float r2c1, float r0c2, float r1c2, float r2c2) {
80 data[0] = r0c0;
81 data[1] = r1c0;
82 data[2] = r2c0;
83 data[3] = r0c1;
84 data[4] = r1c1;
85 data[5] = r2c1;
86 data[6] = r0c2;
87 data[7] = r1c2;
88 data[8] = r2c2;
89 return *this;
90 }
91
92 /**
93 * Sets up this matrix by matrix m
94 * @param m m
95 * @return this matrix
96 */
97 inline Matrix2D3x3& set(const array<float, 9>& m) {
98 data = m;
99 return *this;
100 }
101
102 /**
103 * Sets up this matrix by matrix m
104 * @param m m
105 * @return
106 */
107 inline Matrix2D3x3& set(const Matrix2D3x3& m) {
108 data = m.data;
109 return *this;
110 }
111
112 /**
113 * Setup identity matrix
114 * @return this matrix
115 */
117 data[0] = 1.0f;
118 data[1] = 0.0f;
119 data[2] = 0.0f;
120 data[3] = 0.0f;
121 data[4] = 1.0f;
122 data[5] = 0.0f;
123 data[6] = 0.0f;
124 data[7] = 0.0f;
125 data[8] = 1.0f;
126 return *this;
127 }
128
129 /**
130 * Scales this matrix
131 * @param s s
132 * @returns this matrix
133 */
134 inline Matrix2D3x3& scale(float s) {
135 data[0] *= s;
136 data[1] *= s;
137 data[2] *= s;
138 data[3] *= s;
139 data[4] *= s;
140 data[5] *= s;
141 return *this;
142 }
143
144 /**
145 * Scales this matrix by given vector
146 * @param v v
147 * @return this matrix
148 */
149 inline Matrix2D3x3& scale(const Vector2& v) {
150 data[0] *= v.data[0];
151 data[1] *= v.data[0];
152 data[2] *= v.data[0];
153 data[3] *= v.data[1];
154 data[4] *= v.data[1];
155 data[5] *= v.data[1];
156 return *this;
157 }
158
159 /**
160 * Sets up a translation matrix
161 * @param v v
162 * @return this matrix
163 */
164 inline Matrix2D3x3& translate(const Vector2& v) {
165 data[6] = v.data[0];
166 data[7] = v.data[1];
167 return *this;
168 }
169
170 /**
171 * Creates a rotation matrix
172 * @param angle angle
173 * @return this matrix
174 */
175 inline Matrix2D3x3& rotate(float angle) {
176 auto r = angle * 3.1415927f / 180.0f;
177 float c = Math::cos(r);
178 float s = Math::sin(r);
179 data[0] = c;
180 data[1] = s;
181 data[2] = 0.0f;
182 data[3] = -s;
183 data[4] = c;
184 data[5] = 0.0f;
185 data[6] = 0.0f;
186 data[7] = 0.0f;
187 data[8] = 1.0f;
188 return *this;
189 }
190
191 /**
192 * Creates a rotation matrix that rotates around texture center by given angle
193 * @param angle angle
194 * @return rotation matrix
195 */
196 static inline Matrix2D3x3 rotateAroundTextureCenter(float angle) {
197 return rotateAroundPoint(Vector2(0.5f, 0.5f), angle);
198 }
199
200 /**
201 * Creates a rotation matrix that rotates around given point by given angle
202 * @param point point
203 * @param angle angle
204 * @return rotation matrix
205 */
206 static inline Matrix2D3x3 rotateAroundPoint(const Vector2& point, float angle) {
207 Matrix2D3x3 matrix;
208 matrix.identity();
209 matrix.translate(point);
210 matrix.multiply((Matrix2D3x3()).identity().rotate(-angle));
211 matrix.multiply((Matrix2D3x3()).identity().translate(point.clone().scale(-1.0f)));
212 return matrix;
213 }
214
215 /**
216 * Multiplies this matrix with another matrix
217 * @param m m
218 * @return this matrix
219 */
220 inline Matrix2D3x3& multiply(const Matrix2D3x3& m) {
221 array<float, 9> _data;
222 _data[0] = data[0] * m.data[0] + data[3] * m.data[1] + data[6] * m.data[2];
223 _data[1] = data[1] * m.data[0] + data[4] * m.data[1] + data[7] * m.data[2];
224 _data[2] = data[2] * m.data[0] + data[5] * m.data[1] + data[8] * m.data[2];
225 _data[3] = data[0] * m.data[3] + data[3] * m.data[4] + data[6] * m.data[5];
226 _data[4] = data[1] * m.data[3] + data[4] * m.data[4] + data[7] * m.data[5];
227 _data[5] = data[2] * m.data[3] + data[5] * m.data[4] + data[8] * m.data[5];
228 _data[6] = data[0] * m.data[6] + data[3] * m.data[7] + data[6] * m.data[8];
229 _data[7] = data[1] * m.data[6] + data[4] * m.data[7] + data[7] * m.data[8];
230 _data[8] = data[2] * m.data[6] + data[5] * m.data[7] + data[8] * m.data[8];
231 data = _data;
232 return *this;
233 }
234
235 /**
236 * Multiplies a vector with this matrix into destination vector
237 * @param v vector 2
238 * @return resulting vector 2
239 */
240 inline Vector2 multiply(const Vector2& v) const {
241 return Vector2(
242 data[0] * v.data[0] + data[3] * v.data[1] + data[6],
243 data[1] * v.data[0] + data[4] * v.data[1] + data[7]
244 );
245 }
246
247 /**
248 * Returns if this matrix equals m
249 * @param m m
250 * @return equals
251 */
252 inline bool equals(const Matrix2D3x3& m) const {
253 return
254 (this == &m) ||
255 (
256 Math::abs(data[0] - m.data[0]) < Math::EPSILON &&
257 Math::abs(data[1] - m.data[1]) < Math::EPSILON &&
258 Math::abs(data[2] - m.data[2]) < Math::EPSILON &&
259 Math::abs(data[3] - m.data[3]) < Math::EPSILON &&
260 Math::abs(data[4] - m.data[4]) < Math::EPSILON &&
261 Math::abs(data[5] - m.data[5]) < Math::EPSILON &&
262 Math::abs(data[6] - m.data[6]) < Math::EPSILON &&
263 Math::abs(data[7] - m.data[7]) < Math::EPSILON &&
264 Math::abs(data[8] - m.data[8]) < Math::EPSILON
265 );
266 }
267
268 /**
269 * Array access operator
270 * @param i index
271 * @return vector3 component
272 */
273 inline float& operator[](int i) {
274 return data[i];
275 }
276
277 /**
278 * Const array access operator
279 * @param i index
280 * @return vector3 component
281 */
282 inline const float& operator[](int i) const {
283 return data[i];
284 }
285
286 /**
287 * Operator * (float)
288 * @param f value to multiply by
289 * @return new matrix (this * f)
290 */
291 inline Matrix2D3x3 operator *(const float f) const {
292 auto r = this->clone().scale(f);
293 return r;
294 }
295
296 /**
297 * Operator * (Matrix2D3x3&)
298 * @param m matrix to multiply by
299 * @return new matrix (this * m)
300 */
301 inline Matrix2D3x3 operator *(const Matrix2D3x3& m) const {
302 auto r = this->clone().multiply(m);
303 return r;
304 }
305
306 /*
307 * Operator * (Vector2&)
308 * @param v vector to multiply by
309 * @return new vector (this * v)
310 */
311 inline Vector2 operator *(const Vector2& v) const {
312 return this->multiply(v);
313 }
314
315 /**
316 * Operator *=
317 * @param m matrix to multiply by
318 * @return this matrix multiplied by m
319 */
321 return this->multiply(m);
322 }
323
324 /**
325 * Equality comparison operator
326 * @param m matrix to compare to
327 * @return equality
328 */
329
330 inline bool operator ==(const Matrix2D3x3& m) const {
331 return this->equals(m);
332 }
333
334 /**
335 * Non equality comparison operator
336 * @param m matrix to compare to
337 * @return non equality
338 */
339
340 inline bool operator !=(const Matrix2D3x3& m) const {
341 return this->equals(m) == false;
342 }
343
344 /**
345 * Returns array data
346 * @return array data
347 */
348 inline array<float, 9>& getArray() const {
349 return (array<float, 9>&)data;
350 }
351
352 /**
353 * Interpolates between matrix 1 and matrix 2 by 0f<=t<=1f linearly
354 * @param m1 matrix 1
355 * @param m2 matrix 2
356 * @param t t
357 * @return interpolated matrix
358 */
359 inline static Matrix2D3x3 interpolateLinear(const Matrix2D3x3& m1, const Matrix2D3x3& m2, float t) {
360 return Matrix2D3x3(
361 (m2.data[0] * t) + ((1.0f - t) * m1.data[0]),
362 (m2.data[1] * t) + ((1.0f - t) * m1.data[1]),
363 (m2.data[2] * t) + ((1.0f - t) * m1.data[2]),
364 (m2.data[3] * t) + ((1.0f - t) * m1.data[3]),
365 (m2.data[4] * t) + ((1.0f - t) * m1.data[4]),
366 (m2.data[5] * t) + ((1.0f - t) * m1.data[5]),
367 (m2.data[6] * t) + ((1.0f - t) * m1.data[6]),
368 (m2.data[7] * t) + ((1.0f - t) * m1.data[7]),
369 (m2.data[8] * t) + ((1.0f - t) * m1.data[8])
370 );
371 }
372
373 /**
374 * Clones this matrix
375 * @return new cloned matrix
376 */
377 inline Matrix2D3x3 clone() const {
378 return Matrix2D3x3(data);
379 }
380
381};
Standard math functions.
Definition: Math.h:21
static float cos(float value)
Returns the cosine of an angle.
Definition: Math.h:165
static constexpr float EPSILON
Definition: Math.h:25
static int32_t abs(int32_t value)
Returns absolute value.
Definition: Math.h:91
static float sin(float value)
Returns the sine of an angle.
Definition: Math.h:280
3x3 2D Matrix class
Definition: Matrix2D3x3.h:22
bool operator!=(const Matrix2D3x3 &m) const
Non equality comparison operator.
Definition: Matrix2D3x3.h:340
Vector2 multiply(const Vector2 &v) const
Multiplies a vector with this matrix into destination vector.
Definition: Matrix2D3x3.h:240
Matrix2D3x3 operator*(const float f) const
Operator * (float)
Definition: Matrix2D3x3.h:291
array< float, 9 > & getArray() const
Returns array data.
Definition: Matrix2D3x3.h:348
static Matrix2D3x3 interpolateLinear(const Matrix2D3x3 &m1, const Matrix2D3x3 &m2, float t)
Interpolates between matrix 1 and matrix 2 by 0f<=t<=1f linearly.
Definition: Matrix2D3x3.h:359
Matrix2D3x3(const array< float, 9 > &m)
Public constructor.
Definition: Matrix2D3x3.h:38
bool operator==(const Matrix2D3x3 &m) const
Equality comparison operator.
Definition: Matrix2D3x3.h:330
Matrix2D3x3 & translate(const Vector2 &v)
Sets up a translation matrix.
Definition: Matrix2D3x3.h:164
Matrix2D3x3(const Matrix2D3x3 &matrix)
Public constructor.
Definition: Matrix2D3x3.h:46
Matrix2D3x3 & scale(const Vector2 &v)
Scales this matrix by given vector.
Definition: Matrix2D3x3.h:149
array< float, 9 > data
Definition: Matrix2D3x3.h:24
static Matrix2D3x3 rotateAroundTextureCenter(float angle)
Creates a rotation matrix that rotates around texture center by given angle.
Definition: Matrix2D3x3.h:196
Matrix2D3x3 & identity()
Setup identity matrix.
Definition: Matrix2D3x3.h:116
Matrix2D3x3(float r0c0, float r1c0, float r2c0, float r0c1, float r1c1, float r2c1, float r0c2, float r1c2, float r2c2)
Public constructor.
Definition: Matrix2D3x3.h:62
Matrix2D3x3 & operator*=(const Matrix2D3x3 &m)
Operator *=.
Definition: Matrix2D3x3.h:320
Matrix2D3x3 & set(float r0c0, float r1c0, float r2c0, float r0c1, float r1c1, float r2c1, float r0c2, float r1c2, float r2c2)
Set up matrix by values.
Definition: Matrix2D3x3.h:79
Matrix2D3x3()
Public constructor.
Definition: Matrix2D3x3.h:30
static Matrix2D3x3 rotateAroundPoint(const Vector2 &point, float angle)
Creates a rotation matrix that rotates around given point by given angle.
Definition: Matrix2D3x3.h:206
const float & operator[](int i) const
Const array access operator.
Definition: Matrix2D3x3.h:282
float & operator[](int i)
Array access operator.
Definition: Matrix2D3x3.h:273
Matrix2D3x3 & set(const array< float, 9 > &m)
Sets up this matrix by matrix m.
Definition: Matrix2D3x3.h:97
Matrix2D3x3 & multiply(const Matrix2D3x3 &m)
Multiplies this matrix with another matrix.
Definition: Matrix2D3x3.h:220
Matrix2D3x3 & set(const Matrix2D3x3 &m)
Sets up this matrix by matrix m.
Definition: Matrix2D3x3.h:107
Matrix2D3x3 clone() const
Clones this matrix.
Definition: Matrix2D3x3.h:377
bool equals(const Matrix2D3x3 &m) const
Returns if this matrix equals m.
Definition: Matrix2D3x3.h:252
Matrix2D3x3 & rotate(float angle)
Creates a rotation matrix.
Definition: Matrix2D3x3.h:175
Matrix2D3x3 & scale(float s)
Scales this matrix.
Definition: Matrix2D3x3.h:134
2D vector 2 class
Definition: Vector2.h:19
Vector2 clone() const
Clones the vector.
Definition: Vector2.h:338
Vector2 & scale(const float scale)
Scale this vector.
Definition: Vector2.h:151
array< float, 2 > data
Definition: Vector2.h:23