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 にします。