feat(matrix): add C44Matrix::RotateAroundZ

This commit is contained in:
fallenoak 2020-11-30 17:28:07 -06:00
parent 269c9b9a86
commit f3fe0b6bbe
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
3 changed files with 28 additions and 0 deletions

View file

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