aboutsummaryrefslogtreecommitdiff
path: root/src/engine/data
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/data')
-rw-r--r--src/engine/data/vector2.cpp2
-rw-r--r--src/engine/data/vector2.hpp8
2 files changed, 5 insertions, 5 deletions
diff --git a/src/engine/data/vector2.cpp b/src/engine/data/vector2.cpp
index 6d8ebad..0f203d0 100644
--- a/src/engine/data/vector2.cpp
+++ b/src/engine/data/vector2.cpp
@@ -25,7 +25,7 @@ void Vector2::set_y(Vector2::Value y) noexcept
auto Vector2::to_direction(const Vector2 &direction, Vector2::Value amount) const noexcept
-> Vector2
{
- return *this + (direction * Vector2({ .x = amount, .y = amount }));
+ return *this + (direction * Vector2({.x = amount, .y = amount}));
}
auto Vector2::operator+=(const Vector2 &rhs) noexcept -> const Vector2 &
diff --git a/src/engine/data/vector2.hpp b/src/engine/data/vector2.hpp
index a6de35e..15df88f 100644
--- a/src/engine/data/vector2.hpp
+++ b/src/engine/data/vector2.hpp
@@ -48,7 +48,7 @@ public:
*/
static constexpr auto up() noexcept -> Vector2
{
- return Vector2({ .x = 0, .y = -1 });
+ return Vector2({.x = 0, .y = -1});
}
/**
@@ -56,7 +56,7 @@ public:
*/
static constexpr auto down() noexcept -> Vector2
{
- return Vector2({ .x = 0, .y = 1 });
+ return Vector2({.x = 0, .y = 1});
}
/**
@@ -65,7 +65,7 @@ public:
static constexpr auto left() noexcept -> Vector2
{
- return Vector2({ .x = -1, .y = 0 });
+ return Vector2({.x = -1, .y = 0});
}
/**
@@ -73,7 +73,7 @@ public:
*/
static constexpr auto right() noexcept -> Vector2
{
- return Vector2({ .x = 1, .y = 0 });
+ return Vector2({.x = 1, .y = 0});
}
private: