Implement Matrix3x3 missing members and documentation
All checks were successful
Build Docs With Doxygen / Explore-Gitea-Actions (push) Successful in 1m7s

This commit is contained in:
2024-05-12 11:51:10 -04:00
parent f72bb0de9f
commit 3e8f83ddfb
5 changed files with 111 additions and 20 deletions

View File

@@ -667,7 +667,7 @@ namespace J3ML::LinearAlgebra {
{
assert(!ContainsProjection());
// a) Transpose the top-left 3x3 part in-place to produce R^t.
// a) Transposed the top-left 3x3 part in-place to produce R^t.
Swap(elems[0][1], elems[1][0]);
Swap(elems[0][2], elems[2][0]);
Swap(elems[1][2], elems[2][1]);