TDME2 1.9.121
|
3x3 2D Matrix class More...
#include <tdme/math/Matrix2D3x3.h>
Public Member Functions | |
Matrix2D3x3 () | |
Public constructor. More... | |
Matrix2D3x3 (const array< float, 9 > &m) | |
Public constructor. More... | |
Matrix2D3x3 (const Matrix2D3x3 &matrix) | |
Public constructor. More... | |
Matrix2D3x3 (float r0c0, float r1c0, float r2c0, float r0c1, float r1c1, float r2c1, float r0c2, float r1c2, float r2c2) | |
Public constructor. More... | |
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. More... | |
Matrix2D3x3 & | set (const array< float, 9 > &m) |
Sets up this matrix by matrix m. More... | |
Matrix2D3x3 & | set (const Matrix2D3x3 &m) |
Sets up this matrix by matrix m. More... | |
Matrix2D3x3 & | identity () |
Setup identity matrix. More... | |
Matrix2D3x3 & | scale (float s) |
Scales this matrix. More... | |
Matrix2D3x3 & | scale (const Vector2 &v) |
Scales this matrix by given vector. More... | |
Matrix2D3x3 & | translate (const Vector2 &v) |
Sets up a translation matrix. More... | |
Matrix2D3x3 & | rotate (float angle) |
Creates a rotation matrix. More... | |
Matrix2D3x3 & | multiply (const Matrix2D3x3 &m) |
Multiplies this matrix with another matrix. More... | |
Vector2 | multiply (const Vector2 &v) const |
Multiplies a vector with this matrix into destination vector. More... | |
bool | equals (const Matrix2D3x3 &m) const |
Returns if this matrix equals m. More... | |
float & | operator[] (int i) |
Array access operator. More... | |
const float & | operator[] (int i) const |
Const array access operator. More... | |
Matrix2D3x3 | operator* (const float f) const |
Operator * (float) More... | |
Matrix2D3x3 | operator* (const Matrix2D3x3 &m) const |
Operator * (Matrix2D3x3&) More... | |
Vector2 | operator* (const Vector2 &v) const |
Matrix2D3x3 & | operator*= (const Matrix2D3x3 &m) |
Operator *=. More... | |
bool | operator== (const Matrix2D3x3 &m) const |
Equality comparison operator. More... | |
bool | operator!= (const Matrix2D3x3 &m) const |
Non equality comparison operator. More... | |
array< float, 9 > & | getArray () const |
Returns array data. More... | |
Matrix2D3x3 | clone () const |
Clones this matrix. More... | |
Static Public Member Functions | |
static Matrix2D3x3 | rotateAroundTextureCenter (float angle) |
Creates a rotation matrix that rotates around texture center by given angle. More... | |
static Matrix2D3x3 | rotateAroundPoint (const Vector2 &point, float angle) |
Creates a rotation matrix that rotates around given point by given angle. More... | |
static Matrix2D3x3 | interpolateLinear (const Matrix2D3x3 &m1, const Matrix2D3x3 &m2, float t) |
Interpolates between matrix 1 and matrix 2 by 0f<=t<=1f linearly. More... | |
Private Attributes | |
array< float, 9 > | data |
|
inline |
Public constructor.
Definition at line 30 of file Matrix2D3x3.h.
|
inline |
|
inline |
|
inline |
Public constructor.
r0c0 | r0c0 |
r1c0 | r1c0 |
r2c0 | r2c0 |
r0c1 | r0c1 |
r1c1 | r1c1 |
r2c1 | r2c1 |
r0c2 | r0c2 |
r1c2 | r1c2 |
r2c2 | r2c2 |
Definition at line 62 of file Matrix2D3x3.h.
|
inline |
|
inline |
Returns if this matrix equals m.
m | m |
Definition at line 252 of file Matrix2D3x3.h.
|
inline |
|
inline |
|
inlinestatic |
Interpolates between matrix 1 and matrix 2 by 0f<=t<=1f linearly.
m1 | matrix 1 |
m2 | matrix 2 |
t | t |
Definition at line 359 of file Matrix2D3x3.h.
|
inline |
Multiplies this matrix with another matrix.
m | m |
Definition at line 220 of file Matrix2D3x3.h.
Multiplies a vector with this matrix into destination vector.
v | vector 2 |
Definition at line 240 of file Matrix2D3x3.h.
|
inline |
Non equality comparison operator.
m | matrix to compare to |
Definition at line 340 of file Matrix2D3x3.h.
|
inline |
Operator * (float)
f | value to multiply by |
Definition at line 291 of file Matrix2D3x3.h.
|
inline |
Operator * (Matrix2D3x3&)
m | matrix to multiply by |
Definition at line 301 of file Matrix2D3x3.h.
Definition at line 311 of file Matrix2D3x3.h.
|
inline |
Operator *=.
m | matrix to multiply by |
Definition at line 320 of file Matrix2D3x3.h.
|
inline |
Equality comparison operator.
m | matrix to compare to |
Definition at line 330 of file Matrix2D3x3.h.
|
inline |
Array access operator.
i | index |
Definition at line 273 of file Matrix2D3x3.h.
|
inline |
Const array access operator.
i | index |
Definition at line 282 of file Matrix2D3x3.h.
|
inline |
Creates a rotation matrix.
angle | angle |
Definition at line 175 of file Matrix2D3x3.h.
|
inlinestatic |
Creates a rotation matrix that rotates around given point by given angle.
point | point |
angle | angle |
Definition at line 206 of file Matrix2D3x3.h.
|
inlinestatic |
Creates a rotation matrix that rotates around texture center by given angle.
angle | angle |
Definition at line 196 of file Matrix2D3x3.h.
|
inline |
Scales this matrix by given vector.
v | v |
Definition at line 149 of file Matrix2D3x3.h.
|
inline |
|
inline |
Sets up this matrix by matrix m.
m | m |
Definition at line 97 of file Matrix2D3x3.h.
|
inline |
Sets up this matrix by matrix m.
m | m |
Definition at line 107 of file Matrix2D3x3.h.
|
inline |
Set up matrix by values.
r0c0 | row 0, column 0 |
r1c0 | row 1, column 0 |
r2c0 | row 2, column 0 |
r0c1 | row 0, column 1 |
r1c1 | row 1, column 1 |
r2c1 | row 2, column 1 |
r0c2 | row 0, column 2 |
r1c2 | row 1, column 2 |
r2c2 | row 2, column 2 |
Definition at line 79 of file Matrix2D3x3.h.
|
inline |
Sets up a translation matrix.
v | v |
Definition at line 164 of file Matrix2D3x3.h.
|
private |
Definition at line 24 of file Matrix2D3x3.h.