diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-14 14:46:30 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-14 14:46:30 +0100 |
commit | 65906bc4de308c5841154a3d25368ade2eb38947 (patch) | |
tree | 7d1ead30c4804f723f1e29219b5c5b879c285b0e /src/crepe/api/Vector2.hpp | |
parent | 22abed597868511c595c1226e9137beca7837576 (diff) |
add std::formatter for Vector2
Diffstat (limited to 'src/crepe/api/Vector2.hpp')
-rw-r--r-- | src/crepe/api/Vector2.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/crepe/api/Vector2.hpp b/src/crepe/api/Vector2.hpp index ff53cb0..75d875a 100644 --- a/src/crepe/api/Vector2.hpp +++ b/src/crepe/api/Vector2.hpp @@ -164,3 +164,9 @@ Vector2<T> Vector2<T>::perpendicular() const { } } // namespace crepe + +template <typename T> +std::format_context::iterator std::formatter<crepe::Vector2<T>>::format(crepe::Vector2<T> vec, format_context & ctx) const { + return formatter<string>::format(std::format("{{{}, {}}}", vec.x, vec.y), ctx); +} + |