mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-19 20:30:58 +00:00
rest of the implementation
apparently templated classes need all functions to be inline, otherwise unresolved symbols macro for switching between matrixf and templated few functions that were missed
This commit is contained in:
parent
8f8cc32636
commit
888332a85c
15 changed files with 652 additions and 437 deletions
|
|
@ -36,7 +36,12 @@
|
|||
#endif
|
||||
|
||||
|
||||
#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 SphereF;
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue