|
| Matrix () |
|
| ~Matrix () |
|
template<class U > |
| Matrix (const U tab[_SIZE]) |
|
template<class U > |
| Matrix (const std::vector< U > &tab) |
|
template<class U > |
| Matrix (const Matrix< U, M, N > &m) |
|
value_type | operator() (const unsigned i, const unsigned j) const |
|
value_type & | operator() (const unsigned i, const unsigned j) |
|
Matrix< T, M, N > & | transpose () const |
|
template<class U > |
Matrix< T, M, N > & | operator= (const Matrix< U, M, N > &m) |
|
template<class U > |
Matrix< T, M, N > & | operator+= (const Matrix< U, M, N > &m) |
|
template<class U > |
Matrix< T, M, N > & | operator-= (const Matrix< U, M, N > &m) |
|
template<class U > |
Matrix< T, M, N > & | operator*= (const U lambda) |
|
template<class U > |
Matrix< T, M, N > & | operator/= (const U lambda) |
|
template<class T, unsigned M, unsigned N>
class Freestyle::VecMat::Matrix< T, M, N >
Definition at line 636 of file VecMat.h.