Implement Matrix4x4::Set() Adjugate() SetIdentity() InverseColOrthogonal()
Some checks failed
Run tests / Explore-Gitea-Actions (push) Failing after 33s
Build Docs With Doxygen / Explore-Gitea-Actions (push) Successful in 22s

This commit is contained in:
2024-05-27 14:12:32 -04:00
parent c7aef869a0
commit 78415d2a88
2 changed files with 63 additions and 2 deletions

View File

@@ -565,7 +565,7 @@ namespace J3ML::LinearAlgebra {
void Set(float _00, float _01, float _02, float _03,
float _10, float _11, float _12, float _13,
float _20, float _21, float _22, float _23,
float _30, float _31, float _32, float _34);
float _30, float _31, float _32, float _33);
/// Sets this to be a copy of the matrix rhs.
void Set(const Matrix4x4 &rhs);
@@ -573,7 +573,7 @@ namespace J3ML::LinearAlgebra {
/// Sets all values of this matrix.
/** @param values The values in this array will be copied over to this matrix. The source must contain 16 floats in row-major order
(the same order as the Set() ufnction above has its input parameters in. */
void Set(const float *values);
void Set(const float *p);
/// Sets this matrix to equal the identity.
void SetIdentity();