diff --git a/src/Magnum/Math/Matrix.h b/src/Magnum/Math/Matrix.h index 8d204b59f..7ed4b997e 100644 --- a/src/Magnum/Math/Matrix.h +++ b/src/Magnum/Math/Matrix.h @@ -215,6 +215,9 @@ template class Matrix: public RectangularMatrix operator*(const Vector& other) const { return RectangularMatrix::operator*(other); } + Matrix transposed() const { + return RectangularMatrix::transposed(); + } MAGNUM_RECTANGULARMATRIX_SUBCLASS_IMPLEMENTATION(size, size, Matrix) #endif };