diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-08-06 10:32:26 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-08-06 10:32:26 -0400 |
commit | 779fd068b6aadef909aefdd25d6ec4086300dde2 (patch) | |
tree | bdfe50ccc58fb2995968f8191935eec25bc072f2 /include/vec2.hpp | |
parent | 189afb447e2c76e5dd5e4550e786c5175a828cbc (diff) |
easier initializaton
Diffstat (limited to 'include/vec2.hpp')
-rw-r--r-- | include/vec2.hpp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/include/vec2.hpp b/include/vec2.hpp index 6b3c30a..b0f559f 100644 --- a/include/vec2.hpp +++ b/include/vec2.hpp @@ -1,8 +1,18 @@ #ifndef VEC2_HPP #define VEC2_HPP +#include <tuple> + struct Vec2 { - float x, y; + float x = 0.f, y = 0.f; + + constexpr Vec2() = default; + + constexpr Vec2(float x_, float y_): + x(x_), y(y_) {} + + Vec2(std::tuple<float, float> tup): + x(std::get<0>(tup)), y(std::get<1>(tup)) {} auto operator+(const Vec2& o) const noexcept { return Vec2 {x + o.x, y + o.y}; |