mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-01 03:23:52 +00:00
Expand EngineAPI type definitions
This commit is contained in:
parent
f5f0eb2bb4
commit
a241d27b58
13 changed files with 284 additions and 36 deletions
|
|
@ -35,12 +35,18 @@
|
|||
#include "math/mPoint4.h"
|
||||
#endif
|
||||
|
||||
#ifndef _ENGINETYPEINFO_H_
|
||||
#include "console/engineTypeInfo.h"
|
||||
#endif
|
||||
|
||||
|
||||
/// 4x4 Matrix Class
|
||||
///
|
||||
/// This runs at F32 precision.
|
||||
|
||||
class MatrixF
|
||||
{
|
||||
friend class MatrixFEngineExport;
|
||||
private:
|
||||
F32 m[16]; ///< Note: Torque uses row-major matrices
|
||||
|
||||
|
|
@ -224,6 +230,12 @@ public:
|
|||
const static MatrixF Identity;
|
||||
};
|
||||
|
||||
class MatrixFEngineExport
|
||||
{
|
||||
public:
|
||||
static EngineFieldTable::Field getMatrixField();
|
||||
};
|
||||
|
||||
|
||||
//--------------------------------------
|
||||
// Inline Functions
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue