#include <Matrix.h>
Collaboration diagram for Matrix< Type, size >:
Public Member Functions | |
Matrix () | |
Initializes to the identity matrix. | |
Matrix & | operator+= (const Matrix &m) |
Matrix | operator+ (const Matrix &m) const |
Type * | operator[] (int col) |
const Type * | operator[] (int col) const |
Matrix & | operator *= (const Matrix &other) |
Matrix | operator * (const Matrix &other) const |
void | loadIdentity () |
Type * | matrix () |
Private Attributes | |
Type | mMatrix [size][size] |
|
Initializes to the identity matrix.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|