Merge pull request #1297 from marauder2k9-torque/matrix-templated

Template Matrix class
This commit is contained in:
Brian Roberts 2024-11-07 16:17:38 -06:00 committed by GitHub
commit 1be326e0d0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 2523 additions and 99 deletions

View file

@ -35,7 +35,12 @@ class RectI;
class RectF;
class Box3I;
class Box3F;
#ifndef USE_TEMPLATE_MATRIX
class MatrixF;
#else
template<typename DATA_TYPE, U32 rows, U32 cols> class Matrix;
typedef Matrix<F32, 4, 4> MatrixF;
#endif
class AngAxisF;
class QuatF;
class String;