13 template<
class vector_t>
16 check_and_assign_size(size);
19 template<
class vector_t>
24 value_type yPos) noexcept
27 check_and_assign_size({ width, height });
30 template<
class vector_t>
33 check_and_assign_size(m_Size + dSize);
36 template<
class vector_t>
39 check_and_assign_size(m_Size - dSize);
42 template<
class vector_t>
45 check_and_assign_size(size);
48 template<
class vector_t>
54 template<
class vector_t>
60 template<
class vector_t>
66 template<
class vector_t>
72 template<
class vector_t>
75 return m_Pos + m_Size;
78 template<
class vector_t>
84 template<
class vector_t>
90 template<
class vector_t>
96 template<
class vector_t>
102 template<
class vector_t>
105 return m_Pos.x + m_Size.x;
108 template<
class vector_t>
114 template<
class vector_t>
117 return m_Pos.y + m_Size.y;
120 template<
class vector_t>
123 return m_Pos + m_Size /
static_cast<value_type
>(2.0);
126 template<
class vector_t>
132 template<
class vector_t>
135 return m_Size.x * m_Size.y;
138 template<
class vector_t>
141 const vector_t posRelativeToOrigin = pos + originPos;
147 template<
class vector_t>
150 return contains(other.min(), originPos) &&
contains(other.max(), originPos);
153 template<
class vector_t>
160 template<
class vector_t>
163 const value_type x1 = std::max(left(), other.left());
164 const value_type x2 = std::min(left() + width(), other.left() + other.width());
165 const value_type y1 = std::max(top(), other.top());
166 const value_type y2 = std::min(top() + height(), other.top() + other.height());
171 return basic_rect({ x2 - x1, y2 - y1 }, { x1, y1 });
179 template<
class vector_t>
186 template<
class vector_t>
187 constexpr
bool basic_rect<vector_t>::operator!=(
const basic_rect& other)
const noexcept
189 return !(*
this == other);
192 template<
class vector_t>
193 constexpr
void basic_rect<vector_t>::check_and_assign_size(
const vector_t& size) noexcept
195 m_Size.x = std::max(size.x,
static_cast<value_type
>(0.0));
196 m_Size.y = std::max(size.y,
static_cast<value_type
>(0.0));
constexpr void shift(const vector_t &dPos) noexcept
Shift rect position.
constexpr value_type width() const noexcept
Get rect width.
constexpr vector_t center() const noexcept
Get rect center pos.
constexpr value_type height() const noexcept
Get rect height.
constexpr void set_pos(const vector_t &pos) noexcept
Set rect position.
constexpr value_type bottom() const noexcept
rect bottom border coordinate (y)
constexpr value_type top() const noexcept
rect top border coordinate (y)
constexpr bool empty() const noexcept
Is rect empty.
constexpr void contract(const vector_t &dSize) noexcept
Contract rect.
constexpr const vector_t & min() const noexcept
Get min rect pos.
constexpr std::optional< basic_rect > overlap(const basic_rect &other) const noexcept
Get rect representing overlap this rect by other rect.
constexpr value_type area() const noexcept
Calc rect area.
constexpr value_type right() const noexcept
rect right border coordinate (x)
constexpr value_type left() const noexcept
Get rect left border coordinate (x)
constexpr void set_size(const vector_t &size) noexcept
Change rect size.
constexpr bool overlaps(const basic_rect &other) const noexcept
Is this rect overlaps other rect.
constexpr const vector_t & pos() const noexcept
Get upper left corner pos.
constexpr vector_t max() const noexcept
Get max rect pos.
constexpr const vector_t & size() const noexcept
Get rect size.
constexpr bool contains(const vector_t &pos, const vector_t &originPos=vector_t(0.f)) const noexcept
Is point inside rect.
constexpr void expand(const vector_t &dSize) noexcept
Expand rect.
constexpr bool epsilon_greater_equal(T left, T right, T eps=std::numeric_limits< T >::epsilon())
Constexpr comparison function for a user defined epsilon values.
constexpr bool epsilon_less_equal(T left, T right, T eps=std::numeric_limits< T >::epsilon())
Constexpr comparison function for a user defined epsilon values.
constexpr bool epsilon_equal(T left, T right, T eps=std::numeric_limits< T >::epsilon())
Constexpr comparison function for a user defined epsilon values.
Check that tuple type contains T.