Vegastrike 0.5.1 rc1
1.0
Original sources for Vegastrike Evolved
|
An instance of csMatrix3 that is initialized to scale the Y dimension. More...
#include <opmatrix3.h>
Public Member Functions | |
csYScaleMatrix3 (float scaler) | |
![]() | |
csMatrix3 () | |
Construct a matrix, initialized to be the identity. More... | |
csMatrix3 (float am11, float am12, float am13, float am21, float am22, float am23, float am31, float am32, float am33) | |
Construct a matrix and initialize it. More... | |
csMatrix3 (const Quaternion &quat) | |
Construct a matrix with a quaternion. More... | |
csVector3 | Row1 () const |
Get the first row of this matrix as a vector. More... | |
csVector3 | Row2 () const |
Get the second row of this matrix as a vector. More... | |
csVector3 | Row3 () const |
Get the third row of this matrix as a vector. More... | |
csVector3 | Col1 () const |
Get the first column of this matrix as a vector. More... | |
csVector3 | Col2 () const |
Get the second column of this matrix as a vector. More... | |
csVector3 | Col3 () const |
Get the third column of this matrix as a vector. More... | |
void | Set (float m11, float m12, float m13, float m21, float m22, float m23, float m31, float m32, float m33) |
Set matrix values. More... | |
void | Set (const Quaternion &quat) |
Initialize matrix with a quaternion. More... | |
csMatrix3 & | operator+= (const csMatrix3 &m) |
Add another matrix to this matrix. More... | |
csMatrix3 & | operator-= (const csMatrix3 &m) |
Subtract another matrix from this matrix. More... | |
csMatrix3 & | operator*= (const csMatrix3 &m) |
Multiply another matrix with this matrix. More... | |
csMatrix3 & | operator*= (float s) |
Multiply this matrix with a scalar. More... | |
csMatrix3 & | operator/= (float s) |
Divide this matrix by a scalar. More... | |
csMatrix3 | operator+ () const |
Unary + operator. More... | |
csMatrix3 | operator- () const |
Unary - operator. More... | |
void | Transpose () |
Transpose this matrix. More... | |
csMatrix3 | GetTranspose () const |
Return the transpose of this matrix. More... | |
csMatrix3 | GetInverse () const |
Return the inverse of this matrix. More... | |
void | Invert () |
Invert this matrix. More... | |
float | Determinant () const |
Compute the determinant of this matrix. More... | |
void | Identity () |
Set this matrix to the identity matrix. More... | |
bool | IsIdentity () const |
Check if the matrix is identity. More... | |
Additional Inherited Members | |
![]() | |
float | m11 |
float | m12 |
float | m13 |
float | m21 |
float | m22 |
float | m23 |
float | m31 |
float | m32 |
float | m33 |
An instance of csMatrix3 that is initialized to scale the Y dimension.
Definition at line 221 of file opmatrix3.h.
|
inline |