diff --git a/include/misc/Maths.h b/include/misc/Maths.h index 1463fe0..9f78b89 100644 --- a/include/misc/Maths.h +++ b/include/misc/Maths.h @@ -108,6 +108,10 @@ Mat4 Transpose(const Mat4& mat) { result.w0 = mat.x3; result.w1 = mat.y3; result.w2 = mat.z3; + result.x0 = mat.x0; + result.y1 = mat.y1; + result.z2 = mat.z2; + result.w3 = mat.w3; return result; }