Implement Matrix4x4::Set() Adjugate() SetIdentity() InverseColOrthogonal()
This commit is contained in:
@@ -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();
|
||||
|
Reference in New Issue
Block a user