From db6edcd473a684420e9a7611b24462df21165c1b Mon Sep 17 00:00:00 2001 From: HampusM Date: Sun, 24 Apr 2022 17:13:52 +0200 Subject: style: improve function and brace styling --- src/engine/data/vector2.hpp | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'src/engine/data/vector2.hpp') 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: -- cgit v1.2.3-18-g5258