class
MatrixNxM
template<int N, int M>Class representing a NxM matrix.
Public
Constructors
MatrixNxM<N, M>
MatrixNxM<N, M>() = default
MatrixNxM<N, M>
Methods
Transpose
MatrixNxM<M, N> Transpose() const
Returns a transpose of the matrix (switched columns and rows).
Fields
Data
float[N][M] Data