TDME2 1.9.121
|
4x4 3D Matrix class More...
#include <tdme/math/Matrix4x4.h>
Public Member Functions | |
Matrix4x4 () | |
Public constructor. More... | |
Matrix4x4 (const array< float, 16 > &m) | |
Public constructor. More... | |
Matrix4x4 (const Matrix4x4 &matrix) | |
Public constructor. More... | |
Matrix4x4 (float r0c0, float r1c0, float r2c0, float r3c0, float r0c1, float r1c1, float r2c1, float r3c1, float r0c2, float r1c2, float r2c2, float r3c2, float r0c3, float r1c3, float r2c3, float r3c3) | |
Public constructor. More... | |
Matrix4x4 & | set (float r0c0, float r1c0, float r2c0, float r3c0, float r0c1, float r1c1, float r2c1, float r3c1, float r0c2, float r1c2, float r2c2, float r3c2, float r0c3, float r1c3, float r2c3, float r3c3) |
Set up matrix by values. More... | |
Matrix4x4 & | set (const array< float, 16 > &m) |
Sets up this matrix by matrix m. More... | |
Matrix4x4 & | set (const Matrix4x4 &m) |
Sets up this matrix by matrix m. More... | |
float & | operator[] (int i) |
Array access operator. More... | |
const float & | operator[] (int i) const |
Const array access operator. More... | |
Matrix4x4 | operator* (const float f) const |
Operator * (float) More... | |
Matrix4x4 | operator* (const Matrix4x4 &m) const |
Operator * (Matrix4x4&) More... | |
Vector3 | operator* (const Vector3 &v) const |
Operator * (Vector3&) More... | |
Vector4 | operator* (const Vector4 &v) const |
Operator * (Vector4&) More... | |
Matrix4x4 & | operator*= (const Matrix4x4 m) |
bool | operator== (const Matrix4x4 &m) const |
Equality comparison operator. More... | |
bool | operator!= (const Matrix4x4 &m) const |
Non equality comparison operator. More... | |
void | getAxes (Vector3 &xAxis, Vector3 &yAxis, Vector3 &zAxis) const |
Get coordinate system axes. More... | |
Matrix4x4 & | setAxes (const Vector3 &xAxis, const Vector3 &yAxis, const Vector3 &zAxis) |
Set coordinate system axes. More... | |
void | getTranslation (Vector3 &translation) const |
Get translation. More... | |
Matrix4x4 & | setTranslation (const Vector3 &translation) |
Set translation. More... | |
void | getScale (Vector3 &scale) const |
Get scale. More... | |
Matrix4x4 & | setScale (const Vector3 &scale) |
Get scale. More... | |
Matrix4x4 & | identity () |
Setup identity matrix. More... | |
Vector3 | multiply (const Vector3 &v) const |
Multiplies a vector3 with this matrix into destination vector. More... | |
Vector3 | multiplyNoTranslation (const Vector3 &v) const |
Multiplies a vector3 with this matrix ignoring translation. More... | |
Vector4 | multiply (const Vector4 &v) const |
Multiplies a vector4 with this matrix into destination vector. More... | |
Matrix4x4 & | multiply (const Matrix4x4 &m) |
Multiplies this matrix with another matrix. More... | |
Matrix4x4 & | scale (float s) |
Scales this matrix. More... | |
Matrix4x4 & | scale (const Vector3 &v) |
Scales this matrix by given vector. More... | |
Matrix4x4 & | translate (const Vector3 &v) |
Sets up a translation matrix. More... | |
Matrix4x4 & | rotate (const Vector3 &axis, float angle) |
Creates a rotation matrix. More... | |
Matrix4x4 & | transpose () |
Transposes this matrix. More... | |
Matrix4x4 & | invert () |
Inverts the matrix. More... | |
bool | equals (const Matrix4x4 &m) const |
Returns if this matrix equals m. More... | |
array< float, 16 > & | getArray () const |
Returns array data. More... | |
Matrix4x4 | clone () |
Clones this matrix. More... | |
Vector3 | computeEulerAngles () const |
Compute Euler angles (rotation around x, y, z axes) More... | |
Matrix4x4 | clone () const |
Clones this matrix. More... | |
Static Public Member Functions | |
static Matrix4x4 | interpolateLinear (const Matrix4x4 &m1, const Matrix4x4 &m2, float t) |
Interpolates between matrix 1 and matrix 2 by 0f<=t<=1f linearly. More... | |
Private Attributes | |
array< float, 16 > | data |
|
inline |
Public constructor.
Definition at line 32 of file Matrix4x4.h.
|
inline |
|
inline |
Public constructor.
r0c0 | r0c0 |
r1c0 | r1c0 |
r2c0 | r2c0 |
r3c0 | r3c0 |
r0c1 | r0c1 |
r1c1 | r1c1 |
r2c1 | r2c1 |
r3c1 | r3c1 |
r0c2 | r0c2 |
r1c2 | r1c2 |
r2c2 | r2c2 |
r3c2 | r3c2 |
r0c3 | r0c3 |
r1c3 | r1c3 |
r2c3 | r2c3 |
r3c3 | r3c3 |
Definition at line 71 of file Matrix4x4.h.
|
inline |
|
inline |
|
inline |
Compute Euler angles (rotation around x, y, z axes)
Definition at line 661 of file Matrix4x4.h.
|
inline |
Returns if this matrix equals m.
m | m |
Definition at line 589 of file Matrix4x4.h.
|
inline |
Get coordinate system axes.
xAxis | x axis |
yAxis | y axis |
zAxis | z axis |
Definition at line 227 of file Matrix4x4.h.
|
inline |
|
inline |
Get translation.
translation | translation |
Definition at line 261 of file Matrix4x4.h.
|
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 636 of file Matrix4x4.h.
|
inline |
Multiplies this matrix with another matrix.
m | m |
Definition at line 391 of file Matrix4x4.h.
Multiplies a vector3 with this matrix into destination vector.
v | vector 3 |
Definition at line 351 of file Matrix4x4.h.
Multiplies a vector4 with this matrix into destination vector.
v | vector 4 |
Definition at line 377 of file Matrix4x4.h.
Multiplies a vector3 with this matrix ignoring translation.
v | vector 3 |
Definition at line 364 of file Matrix4x4.h.
|
inline |
Non equality comparison operator.
m | matrix to compare to |
Definition at line 216 of file Matrix4x4.h.
|
inline |
Operator * (float)
f | value to multiply by |
Definition at line 158 of file Matrix4x4.h.
Operator * (Matrix4x4&)
m | matrix to multiply by |
Definition at line 168 of file Matrix4x4.h.
Operator * (Vector3&)
v | vector to multiply by |
Definition at line 178 of file Matrix4x4.h.
Operator * (Vector4&)
v | vector to multiply by |
Definition at line 187 of file Matrix4x4.h.
Definition at line 196 of file Matrix4x4.h.
|
inline |
Equality comparison operator.
m | matrix to compare to |
Definition at line 206 of file Matrix4x4.h.
|
inline |
Array access operator.
i | index |
Definition at line 140 of file Matrix4x4.h.
|
inline |
Const array access operator.
i | index |
Definition at line 149 of file Matrix4x4.h.
Creates a rotation matrix.
axis | axis |
angle | angle |
Definition at line 473 of file Matrix4x4.h.
Scales this matrix by given vector.
v | v |
Definition at line 439 of file Matrix4x4.h.
|
inline |
|
inline |
Sets up this matrix by matrix m.
m | m |
Definition at line 120 of file Matrix4x4.h.
|
inline |
Set up matrix by values.
r0c0 | row 0, column 0 |
r1c0 | row 1, column 0 |
r2c0 | row 2, column 0 |
r3c0 | row 3, column 0 |
r0c1 | row 0, column 1 |
r1c1 | row 1, column 1 |
r2c1 | row 2, column 1 |
r3c1 | row 3, column 1 |
r0c2 | row 0, column 2 |
r1c2 | row 1, column 2 |
r2c2 | row 2, column 2 |
r3c2 | row 3, column 2 |
r0c3 | row 0, column 3 |
r1c3 | row 1, column 3 |
r2c3 | row 2, column 3 |
r3c3 | row 3, column 3 |
Definition at line 95 of file Matrix4x4.h.
Set coordinate system axes.
xAxis | x axis |
yAxis | y axis |
zAxis | z axis |
Definition at line 240 of file Matrix4x4.h.
Set translation.
translation | translation |
Definition at line 270 of file Matrix4x4.h.
Sets up a translation matrix.
v | v |
Definition at line 460 of file Matrix4x4.h.
|
inline |
|
private |
Definition at line 26 of file Matrix4x4.h.