Skip to content

Commit

Permalink
Point::minComponent()とPoint::maxComponent()のDoxygenコメントを入れ替えた (#1262)
Browse files Browse the repository at this point in the history
  • Loading branch information
yukidoke authored Sep 10, 2024
1 parent eda3b92 commit 28cce16
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Siv3D/include/Siv3D/Point.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 にします。
Expand Down

0 comments on commit 28cce16

Please sign in to comment.