diff options
Diffstat (limited to 'include/core/Basis.hpp')
-rw-r--r-- | include/core/Basis.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/core/Basis.hpp b/include/core/Basis.hpp index 76a345b..0fd697e 100644 --- a/include/core/Basis.hpp +++ b/include/core/Basis.hpp @@ -13,6 +13,11 @@ class Quat; class Basis { private: + static const Basis IDENTITY; + static const Basis FLIP_X; + static const Basis FLIP_Y; + static const Basis FLIP_Z; + // This helper template is for mimicking the behavior difference between the engine // and script interfaces that logically script sees matrices as column major, while // the engine stores them in row major to efficiently take advantage of SIMD |