summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/common')
-rw-r--r--src/common/vector_math.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/common/vector_math.h b/src/common/vector_math.h
index 2d56f168c..a57d86d88 100644
--- a/src/common/vector_math.h
+++ b/src/common/vector_math.h
@@ -60,7 +60,6 @@ public:
60 } 60 }
61 61
62 Vec2() = default; 62 Vec2() = default;
63 Vec2(const T a[2]) : x(a[0]), y(a[1]) {}
64 Vec2(const T& _x, const T& _y) : x(_x), y(_y) {} 63 Vec2(const T& _x, const T& _y) : x(_x), y(_y) {}
65 64
66 template <typename T2> 65 template <typename T2>
@@ -199,7 +198,6 @@ public:
199 } 198 }
200 199
201 Vec3() = default; 200 Vec3() = default;
202 Vec3(const T a[3]) : x(a[0]), y(a[1]), z(a[2]) {}
203 Vec3(const T& _x, const T& _y, const T& _z) : x(_x), y(_y), z(_z) {} 201 Vec3(const T& _x, const T& _y, const T& _z) : x(_x), y(_y), z(_z) {}
204 202
205 template <typename T2> 203 template <typename T2>
@@ -405,7 +403,6 @@ public:
405 } 403 }
406 404
407 Vec4() = default; 405 Vec4() = default;
408 Vec4(const T a[4]) : x(a[0]), y(a[1]), z(a[2]), w(a[3]) {}
409 Vec4(const T& _x, const T& _y, const T& _z, const T& _w) : x(_x), y(_y), z(_z), w(_w) {} 406 Vec4(const T& _x, const T& _y, const T& _z, const T& _w) : x(_x), y(_y), z(_z), w(_w) {}
410 407
411 template <typename T2> 408 template <typename T2>