fixing transpose

This commit is contained in:
2023-06-03 19:46:37 +02:00
parent bc7e5914ce
commit cb5f5a4cf8

View File

@@ -108,6 +108,10 @@ Mat4<T> Transpose(const Mat4<T>& 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;
}