Transposed


Return transposed matrix.

template<class TYPE>
TMat2<TYPE> Transposed(const TMat2<TYPE> &m);
template<class TYPE>
TMat3<TYPE> Transposed(const TMat3<TYPE> &m);
template<class TYPE>
TMat4<TYPE> Transposed(const TMat4<TYPE> &m);
template<class TYPE, size_t ROWS, size_t COLUMNS>
TMatrix<TYPE, COLUMNS, ROWS> Transposed(const TMatrix<TYPE, ROWS, COLUMNS> &m);
Namespace: ntl
Include: NTL/Core/Mat2.h (For TMat2 argument)
NTL/Core/Mat3.h (For TMat3 argument)
NTL/Core/Mat4.h (For TMat4 argument)
NTL/Core/Matrix.h (For TMatrix argument)