summaryrefslogtreecommitdiffstats
path: root/include/core/Basis.hpp
diff options
context:
space:
mode:
authorMarc <marc.gilleron@gmail.com>2021-01-31 20:06:56 +0000
committerGitHub <noreply@github.com>2021-01-31 20:06:56 +0000
commitb400dba87534640eeddbcdb6b319335a6a7639d8 (patch)
tree286a8e2e25c18fe11f346835b3021afae2e9b77f /include/core/Basis.hpp
parentfb71edd45b2473bf0ac502c777a1850fb564087e (diff)
parent05ba977cc60653952b73dc03498ebc7a93cef120 (diff)
downloadredot-cpp-b400dba87534640eeddbcdb6b319335a6a7639d8.tar.gz
Merge branch 'master' into container_leaks
Diffstat (limited to 'include/core/Basis.hpp')
-rw-r--r--include/core/Basis.hpp5
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