feat(matrix): add C44Matrix::RotationAroundZ

This commit is contained in:
fallenoak 2020-11-29 23:17:09 -06:00
parent 5e8ed6ae7f
commit 957635b484
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
3 changed files with 73 additions and 0 deletions

View file

@ -3,6 +3,9 @@
class C44Matrix {
public:
// Static functions
static C44Matrix RotationAroundZ(float angle);
// Member variables
float a0 = 1.0f;
float a1 = 0.0f;