feat(matrix): add operator* for C44Matrix and float

This commit is contained in:
fallenoak 2020-11-29 13:40:10 -06:00
parent 63a478841a
commit 571f2369f9
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
3 changed files with 49 additions and 0 deletions

View file

@ -44,4 +44,6 @@ class C44Matrix {
float Determinant();
};
C44Matrix operator*(const C44Matrix& l, float a);
#endif