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

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

View file

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