mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-25 15:15:40 +00:00
Common/Rectangle: Add clamp methods
This commit is contained in:
parent
a5135ceeb0
commit
d2db6bf9c3
|
@ -151,6 +151,35 @@ struct Rectangle
|
||||||
bottom = std::max(bottom, rhs.bottom);
|
bottom = std::max(bottom, rhs.bottom);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Clamps the rectangle to the specified coordinates.
|
||||||
|
constexpr void Clamp(T x1, T y1, T x2, T y2)
|
||||||
|
{
|
||||||
|
left = std::clamp(left, x1, x2);
|
||||||
|
right = std::clamp(right, x1, x2);
|
||||||
|
top = std::clamp(top, y1, y2);
|
||||||
|
bottom = std::clamp(bottom, y1, y2);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Clamps the rectangle to the specified size.
|
||||||
|
constexpr void ClampSize(T width, T height)
|
||||||
|
{
|
||||||
|
right = std::min(right, left + width);
|
||||||
|
bottom = std::min(bottom, top + height);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns a new rectangle with clamped coordinates.
|
||||||
|
constexpr Rectangle Clamped(T x1, T y1, T x2, T y2) const
|
||||||
|
{
|
||||||
|
return Rectangle(std::clamp(left, x1, x2), std::clamp(top, y1, y2), std::clamp(right, x1, x2),
|
||||||
|
std::clamp(bottom, y1, y2));
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns a new rectangle with clamped size.
|
||||||
|
constexpr Rectangle ClampedSize(T width, T height) const
|
||||||
|
{
|
||||||
|
return Rectangle(left, top, std::min(right, left + width), std::min(bottom, top + height));
|
||||||
|
}
|
||||||
|
|
||||||
T left;
|
T left;
|
||||||
T top;
|
T top;
|
||||||
T right;
|
T right;
|
||||||
|
|
Loading…
Reference in a new issue