|
inline_ | Matrix4x4 () |
| Empty constructor. More...
|
|
inline_ | Matrix4x4 (float m00, float m01, float m02, float m03, float m10, float m11, float m12, float m13, float m20, float m21, float m22, float m23, float m30, float m31, float m32, float m33) |
| Constructor from 16 values. More...
|
|
inline_ | Matrix4x4 (const Matrix4x4 &mat) |
| Copy constructor. More...
|
|
inline_ | ~Matrix4x4 () |
| Destructor. More...
|
|
inline_ Matrix4x4 & | Set (float m00, float m01, float m02, float m10, float m11, float m12, float m20, float m21, float m22) |
| Assign values (rotation only) More...
|
|
inline_ Matrix4x4 & | Set (float m00, float m01, float m02, float m03, float m10, float m11, float m12, float m13, float m20, float m21, float m22, float m23, float m30, float m31, float m32, float m33) |
| Assign values. More...
|
|
inline_ void | Copy (const Matrix4x4 &source) |
| Copy from a Matrix4x4. More...
|
|
inline_ void | GetRow (const udword r, HPoint &p) const |
| Returns a row. More...
|
|
inline_ void | GetRow (const udword r, Point &p) const |
| Returns a row. More...
|
|
inline_ const HPoint & | GetRow (const udword r) const |
| Returns a row. More...
|
|
inline_ HPoint & | GetRow (const udword r) |
| Returns a row. More...
|
|
inline_ void | SetRow (const udword r, const HPoint &p) |
| Sets a row. More...
|
|
inline_ void | SetRow (const udword r, const Point &p) |
| Sets a row. More...
|
|
inline_ void | GetCol (const udword c, HPoint &p) const |
| Returns a column. More...
|
|
inline_ void | GetCol (const udword c, Point &p) const |
| Returns a column. More...
|
|
inline_ void | SetCol (const udword c, const HPoint &p) |
| Sets a column. More...
|
|
inline_ void | SetCol (const udword c, const Point &p) |
| Sets a column. More...
|
|
inline_ const HPoint & | GetTrans () const |
| Returns the translation part of the matrix. More...
|
|
inline_ void | GetTrans (Point &p) const |
| Gets the translation part of the matrix. More...
|
|
inline_ void | SetTrans (const Point &p) |
| Sets the translation part of the matrix, from a Point. More...
|
|
inline_ void | SetTrans (const HPoint &p) |
| Sets the translation part of the matrix, from a HPoint. More...
|
|
inline_ void | SetTrans (float tx, float ty, float tz) |
| Sets the translation part of the matrix, from floats. More...
|
|
inline_ void | SetScale (const Point &p) |
| Sets the scale from a Point. The point is put on the diagonal. More...
|
|
inline_ void | SetScale (float sx, float sy, float sz) |
| Sets the scale from floats. Values are put on the diagonal. More...
|
|
void | Scale (const Point &p) |
| Scales from a Point. Each row is multiplied by a component. More...
|
|
void | Scale (float sx, float sy, float sz) |
| Scales from floats. Each row is multiplied by a value. More...
|
|
inline_ float | Trace () const |
| Computes the trace. The trace is the sum of the 4 diagonal components. More...
|
|
inline_ float | Trace3x3 () const |
| Computes the trace of the upper 3x3 matrix. More...
|
|
inline_ void | Zero () |
| Clears the matrix. More...
|
|
inline_ void | Identity () |
| Sets the identity matrix. More...
|
|
inline_ bool | IsIdentity () const |
| Checks for identity. More...
|
|
inline_ BOOL | IsValid () const |
| Checks matrix validity. More...
|
|
void | RotX (float angle) |
| Sets a rotation matrix around the X axis. More...
|
|
void | RotY (float angle) |
| Sets a rotation matrix around the Y axis. More...
|
|
void | RotZ (float angle) |
| Sets a rotation matrix around the Z axis. More...
|
|
Matrix4x4 & | Rot (float angle, Point &p1, Point &p2) |
| Makes a rotation matrix about an arbitrary axis. More...
|
|
void | Transpose () |
| Transposes the matrix. More...
|
|
float | CoFactor (udword row, udword col) const |
| Computes a cofactor. Used for matrix inversion. More...
|
|
float | Determinant () const |
| Computes the determinant of the matrix. More...
|
|
Matrix4x4 & | Invert () |
| Inverts the matrix. Determinant must be different from zero, else matrix can't be inverted. More...
|
|
inline_ | operator Matrix3x3 () const |
| Casts a Matrix4x4 to a Matrix3x3. More...
|
|
| operator Quat () const |
| Casts a Matrix4x4 to a Quat. More...
|
|
| operator PR () const |
| Casts a Matrix4x4 to a PR. More...
|
|
inline_ Matrix4x4 | operator+ (const Matrix4x4 &mat) const |
| Operator for Matrix4x4 Plus = Matrix4x4 + Matrix4x4;. More...
|
|
inline_ Matrix4x4 | operator- (const Matrix4x4 &mat) const |
| Operator for Matrix4x4 Minus = Matrix4x4 - Matrix4x4;. More...
|
|
inline_ Matrix4x4 | operator* (const Matrix4x4 &mat) const |
| Operator for Matrix4x4 Mul = Matrix4x4 * Matrix4x4;. More...
|
|
inline_ HPoint | operator* (const HPoint &v) const |
| Operator for HPoint Mul = Matrix4x4 * HPoint;. More...
|
|
inline_ Point | operator* (const Point &v) const |
| Operator for Point Mul = Matrix4x4 * Point;. More...
|
|
inline_ Matrix4x4 | operator* (float s) const |
| Operator for Matrix4x4 Scale = Matrix4x4 * float;. More...
|
|
inline_ Matrix4x4 | operator/ (float s) const |
| Operator for Matrix4x4 Div = Matrix4x4 / float;. More...
|
|
inline_ Matrix4x4 & | operator+= (const Matrix4x4 &mat) |
| Operator for Matrix4x4 += Matrix4x4;. More...
|
|
inline_ Matrix4x4 & | operator-= (const Matrix4x4 &mat) |
| Operator for Matrix4x4 -= Matrix4x4;. More...
|
|
Matrix4x4 & | operator*= (const Matrix4x4 &mat) |
| Operator for Matrix4x4 *= Matrix4x4;. More...
|
|
inline_ Matrix4x4 & | operator*= (float s) |
| Operator for Matrix4x4 *= float;. More...
|
|
inline_ Matrix4x4 & | operator/= (float s) |
| Operator for Matrix4x4 /= float;. More...
|
|
inline_ const HPoint & | operator[] (int row) const |
|
inline_ HPoint & | operator[] (int row) |
|
Definition at line 22 of file Opcode.h.