feat(matrix): add C44Matrix::Translate

This commit is contained in:
fallenoak 2022-12-24 17:22:29 -06:00
parent 3dd32515fe
commit b0a37c4e5e
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
2 changed files with 7 additions and 0 deletions

View file

@ -51,6 +51,7 @@ class C44Matrix {
void RotateAroundZ(float angle);
void Scale(const C3Vector& scale);
void Scale(float scale);
void Translate(const C3Vector& move);
};
C44Matrix operator*(const C44Matrix& l, float a);