aboutsummaryrefslogtreecommitdiff
path: root/src/engine/data/vector2.hpp
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-04-24 17:13:52 +0200
committerHampusM <hampus@hampusmat.com>2022-06-13 17:56:58 +0200
commitdb6edcd473a684420e9a7611b24462df21165c1b (patch)
tree9646bdb4f5f6e339a0a01873b44e0b185476ce56 /src/engine/data/vector2.hpp
parentb36d072ad7a7b9c6e30fcb25d6bbb001a8393468 (diff)
style: improve function and brace styling
Diffstat (limited to 'src/engine/data/vector2.hpp')
-rw-r--r--src/engine/data/vector2.hpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/engine/data/vector2.hpp b/src/engine/data/vector2.hpp
index 95baf1c..a6de35e 100644
--- a/src/engine/data/vector2.hpp
+++ b/src/engine/data/vector2.hpp
@@ -30,8 +30,9 @@ public:
void set_y(Value y) noexcept;
- [[nodiscard]] auto to_direction(const Vector2 &direction,
- Vector2::Value amount) const noexcept -> Vector2;
+ [[nodiscard]] auto
+ to_direction(const Vector2 &direction, Vector2::Value amount) const noexcept
+ -> Vector2;
auto operator+=(const Vector2 &rhs) noexcept -> const Vector2 &;
auto operator-=(const Vector2 &rhs) noexcept -> const Vector2 &;
@@ -47,7 +48,7 @@ public:
*/
static constexpr auto up() noexcept -> Vector2
{
- return Vector2({.x = 0, .y = -1});
+ return Vector2({ .x = 0, .y = -1 });
}
/**
@@ -55,7 +56,7 @@ public:
*/
static constexpr auto down() noexcept -> Vector2
{
- return Vector2({.x = 0, .y = 1});
+ return Vector2({ .x = 0, .y = 1 });
}
/**
@@ -64,7 +65,7 @@ public:
static constexpr auto left() noexcept -> Vector2
{
- return Vector2({.x = -1, .y = 0});
+ return Vector2({ .x = -1, .y = 0 });
}
/**
@@ -72,7 +73,7 @@ public:
*/
static constexpr auto right() noexcept -> Vector2
{
- return Vector2({.x = 1, .y = 0});
+ return Vector2({ .x = 1, .y = 0 });
}
private: