mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-19 19:35:26 +00:00
Merge pull request #1297 from marauder2k9-torque/matrix-templated
Template Matrix class
This commit is contained in:
commit
1be326e0d0
20 changed files with 2523 additions and 99 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue