summaryrefslogtreecommitdiff
path: root/core/math
diff options
context:
space:
mode:
authorJ08nY <johny@neuromancer.sk>2016-06-19 00:06:04 +0200
committerJ08nY <johny@neuromancer.sk>2016-06-19 00:41:52 +0200
commit449571b6cd48083fb34a4f7aebe6758cd527afc9 (patch)
treeec8eb007bfa077747e989a9e45eecee1ca74be6a /core/math
parenta95a1f47a45a5d8595c6681c28abd31ab0635479 (diff)
Remove USE_QUAD_VECTORS unused check
Diffstat (limited to 'core/math')
-rw-r--r--core/math/vector3.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/core/math/vector3.h b/core/math/vector3.h
index 528c4d37b3..910446023a 100644
--- a/core/math/vector3.h
+++ b/core/math/vector3.h
@@ -44,18 +44,6 @@ struct Vector3 {
};
union {
-
-#ifdef USE_QUAD_VECTORS
-
- struct {
- real_t x;
- real_t y;
- real_t z;
- real_t _unused;
- };
- real_t coord[4];
-#else
-
struct {
real_t x;
real_t y;
@@ -63,7 +51,6 @@ struct Vector3 {
};
real_t coord[3];
-#endif
};
_FORCE_INLINE_ const real_t& operator[](int p_axis) const {