feat(matrix): add C44Matrix::Inverse

This commit is contained in:
fallenoak 2020-11-29 14:01:06 -06:00
parent 571f2369f9
commit 614f6b46e1
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
3 changed files with 70 additions and 0 deletions

View file

@ -42,6 +42,7 @@ class C44Matrix {
, d3(d3) {};
C44Matrix Adjoint() const;
float Determinant();
C44Matrix Inverse(float det) const;
};
C44Matrix operator*(const C44Matrix& l, float a);