|
Public Member Functions |
| | Matrix3 () |
| | Matrix3 (const Matrix3 &mat) |
| | Matrix3 (float a00, float a01, float a02, float a10, float a11, float a12, float a20, float a21, float a22) |
| | ~Matrix3 () |
| float & | operator() (int row, int col) |
| float | operator() (int row, int col) const |
| Matrix3 & | operator= (const Matrix3 &rhs) |
| void | set (const Matrix3 &rhs) |
| void | set (float const *const ptr) |
| void | set (float a00, float a01, float a02, float a10, float a11, float a12, float a20, float a21, float a22) |
| float * | ptr () |
| const float * | ptr () const |
| float & | operator[] (int i) |
| float | operator[] (int i) const |
| void | makeIdentity () |
Protected Attributes |
| float | _mat [3][3] |