From 28cce1653a1a7c137ae3f2a3180cc4bbb7396e48 Mon Sep 17 00:00:00 2001 From: yukidoke <95288936+yukidoke@users.noreply.github.com> Date: Tue, 10 Sep 2024 16:46:55 +0900 Subject: [PATCH] =?UTF-8?q?Point::minComponent()=E3=81=A8Point::maxCompone?= =?UTF-8?q?nt()=E3=81=AEDoxygen=E3=82=B3=E3=83=A1=E3=83=B3=E3=83=88?= =?UTF-8?q?=E3=82=92=E5=85=A5=E3=82=8C=E6=9B=BF=E3=81=88=E3=81=9F=20(#1262?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Siv3D/include/Siv3D/Point.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Siv3D/include/Siv3D/Point.hpp b/Siv3D/include/Siv3D/Point.hpp index 1b300ba39..fe7141270 100644 --- a/Siv3D/include/Siv3D/Point.hpp +++ b/Siv3D/include/Siv3D/Point.hpp @@ -184,16 +184,16 @@ namespace s3d [[nodiscard]] constexpr bool isZero() const noexcept; - /// @brief 最大の成分を返します。 - /// @remark Point{ 3, 2 } の場合、3 を返します。 - /// @return 最大の成分 - [[nodiscard]] - constexpr value_type minComponent() const noexcept; - /// @brief 最小の成分を返します。 /// @remark Point{ 3, 2 } の場合、2 を返します。 /// @return 最小の成分 [[nodiscard]] + constexpr value_type minComponent() const noexcept; + + /// @brief 最大の成分を返します。 + /// @remark Point{ 3, 2 } の場合、3 を返します。 + /// @return 最大の成分 + [[nodiscard]] constexpr value_type maxComponent() const noexcept; /// @brief すべての成分を 0 にします。