|
| | SquareMatrix () |
| |
| template<class U > |
| | SquareMatrix (const U tab[_SIZE]) |
| |
| template<class U > |
| | SquareMatrix (const std::vector< U > &tab) |
| |
| template<class U > |
| | SquareMatrix (const Matrix< U, N, N > &m) |
| |
| | Matrix () |
| |
| | Matrix (const U tab[_SIZE]) |
| |
| | Matrix (const std::vector< U > &tab) |
| |
| | Matrix (const Matrix< U, M, N > &m) |
| |
| | ~Matrix () |
| |
| 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 |
| |
| Matrix< T, M, N > & | operator= (const Matrix< U, M, N > &m) |
| |
| Matrix< T, M, N > & | operator+= (const Matrix< U, M, N > &m) |
| |
| Matrix< T, M, N > & | operator-= (const Matrix< U, M, N > &m) |
| |
| Matrix< T, M, N > & | operator*= (const U lambda) |
| |
| Matrix< T, M, N > & | operator/= (const U lambda) |
| |
template<class T, unsigned N>
class Freestyle::VecMat::SquareMatrix< T, N >
Definition at line 782 of file VecMat.h.