chore(matrix): mark C44Matrix::Determinant as const

This commit is contained in:
fallenoak 2020-11-29 22:42:11 -06:00
parent c48d6716ac
commit 5e8ed6ae7f
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
2 changed files with 2 additions and 2 deletions

View file

@ -41,7 +41,7 @@ class C44Matrix {
, d2(d2)
, d3(d3) {};
C44Matrix Adjoint() const;
float Determinant();
float Determinant() const;
C44Matrix Inverse(float det) const;
};