From 254674a62ee8f514ac3ae33f3c72a0972d6cb250 Mon Sep 17 00:00:00 2001 From: Orange Date: Fri, 18 Apr 2025 12:11:43 +0300 Subject: [PATCH] fixed code style --- include/omath/3d_primitives/box.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/omath/3d_primitives/box.hpp b/include/omath/3d_primitives/box.hpp index bbe43b2..3b786e3 100644 --- a/include/omath/3d_primitives/box.hpp +++ b/include/omath/3d_primitives/box.hpp @@ -10,5 +10,6 @@ namespace omath::primitives { [[nodiscard]] std::array, 8> CreateBox(const Vector3& top, const Vector3& bottom, - const Vector3& dirForward, const Vector3& dirRight, float ratio = 4.f); + const Vector3& dirForward, const Vector3& dirRight, + float ratio = 4.f); }