diff --git a/src/Math/Matrix3.h b/src/Math/Matrix3.h index a1799dfe3..31eefcf6d 100644 --- a/src/Math/Matrix3.h +++ b/src/Math/Matrix3.h @@ -32,9 +32,9 @@ template class Matrix3: public Matrix<3, T> { /** @copydoc Matrix::Matrix(IdentityType, T) */ inline constexpr explicit Matrix3(typename Matrix<3, T>::IdentityType = (Matrix<3, T>::Identity), T value = T(1)): Matrix<3, T>( - value, 0.0f, 0.0f, - 0.0f, value, 0.0f, - 0.0f, 0.0f, value + value, T(0), T(0), + T(0), value, T(0), + T(0), T(0), value ) {} /** @copydoc Matrix::Matrix(T, U...) */