qxLib
rect.inl
Go to the documentation of this file.
1 /**
2 
3  @file rect.inl
4  @author Khrapov
5  @date 12.11.2021
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 
10 namespace qx
11 {
12 
13 template<class vector_t>
14 constexpr basic_rect<vector_t>::basic_rect(vector_t size, vector_t pos) noexcept : m_Pos(pos)
15 {
16  check_and_assign_size(size);
17 }
18 
19 template<class vector_t>
21  value_type width,
22  value_type height,
23  value_type xPos,
24  value_type yPos) noexcept
25  : m_Pos(xPos, yPos)
26 {
27  check_and_assign_size({ width, height });
28 }
29 
30 template<class vector_t>
31 constexpr void basic_rect<vector_t>::expand(const vector_t& dSize) noexcept
32 {
33  check_and_assign_size(m_Size + dSize);
34 }
35 
36 template<class vector_t>
37 constexpr void basic_rect<vector_t>::contract(const vector_t& dSize) noexcept
38 {
39  check_and_assign_size(m_Size - dSize);
40 }
41 
42 template<class vector_t>
43 constexpr void basic_rect<vector_t>::set_size(const vector_t& size) noexcept
44 {
45  check_and_assign_size(size);
46 }
47 
48 template<class vector_t>
49 constexpr void basic_rect<vector_t>::set_pos(const vector_t& pos) noexcept
50 {
51  m_Pos = pos;
52 }
53 
54 template<class vector_t>
55 constexpr void basic_rect<vector_t>::shift(const vector_t& dPos) noexcept
56 {
57  m_Pos += dPos;
58 }
59 
60 template<class vector_t>
61 constexpr const vector_t& basic_rect<vector_t>::pos() const noexcept
62 {
63  return m_Pos;
64 }
65 
66 template<class vector_t>
67 constexpr const vector_t& basic_rect<vector_t>::min() const noexcept
68 {
69  return pos();
70 }
71 
72 template<class vector_t>
73 constexpr vector_t basic_rect<vector_t>::max() const noexcept
74 {
75  return m_Pos + m_Size;
76 }
77 
78 template<class vector_t>
79 constexpr const vector_t& basic_rect<vector_t>::size() const noexcept
80 {
81  return m_Size;
82 }
83 
84 template<class vector_t>
85 constexpr typename basic_rect<vector_t>::value_type basic_rect<vector_t>::width() const noexcept
86 {
87  return m_Size.x;
88 }
89 
90 template<class vector_t>
91 constexpr typename basic_rect<vector_t>::value_type basic_rect<vector_t>::height() const noexcept
92 {
93  return m_Size.y;
94 }
95 
96 template<class vector_t>
97 constexpr typename basic_rect<vector_t>::value_type basic_rect<vector_t>::left() const noexcept
98 {
99  return m_Pos.x;
100 }
101 
102 template<class vector_t>
103 constexpr typename basic_rect<vector_t>::value_type basic_rect<vector_t>::right() const noexcept
104 {
105  return m_Pos.x + m_Size.x;
106 }
107 
108 template<class vector_t>
109 constexpr typename basic_rect<vector_t>::value_type basic_rect<vector_t>::top() const noexcept
110 {
111  return m_Pos.y;
112 }
113 
114 template<class vector_t>
115 constexpr typename basic_rect<vector_t>::value_type basic_rect<vector_t>::bottom() const noexcept
116 {
117  return m_Pos.y + m_Size.y;
118 }
119 
120 template<class vector_t>
121 constexpr vector_t basic_rect<vector_t>::center() const noexcept
122 {
123  return m_Pos + m_Size / static_cast<value_type>(2.0);
124 }
125 
126 template<class vector_t>
127 constexpr bool basic_rect<vector_t>::empty() const noexcept
128 {
129  return epsilon_equal(area(), static_cast<value_type>(0.0));
130 }
131 
132 template<class vector_t>
133 constexpr typename basic_rect<vector_t>::value_type basic_rect<vector_t>::area() const noexcept
134 {
135  return m_Size.x * m_Size.y;
136 }
137 
138 template<class vector_t>
139 constexpr bool basic_rect<vector_t>::contains(const vector_t& pos, const vector_t& originPos) const noexcept
140 {
141  const vector_t posRelativeToOrigin = pos + originPos;
142  return epsilon_less_equal(m_Pos.x, posRelativeToOrigin.x) && epsilon_less_equal(m_Pos.y, posRelativeToOrigin.y)
143  && epsilon_greater_equal(m_Pos.x + m_Size.x, posRelativeToOrigin.x)
144  && epsilon_greater_equal(m_Pos.y + m_Size.y, posRelativeToOrigin.y);
145 }
146 
147 template<class vector_t>
148 constexpr bool basic_rect<vector_t>::contains(const basic_rect& other, const vector_t& originPos) const noexcept
149 {
150  return contains(other.min(), originPos) && contains(other.max(), originPos);
151 }
152 
153 template<class vector_t>
154 constexpr bool basic_rect<vector_t>::overlaps(const basic_rect& other) const noexcept
155 {
156  return epsilon_less_equal(left(), other.right()) && epsilon_greater_equal(right(), other.left())
157  && epsilon_less_equal(top(), other.bottom()) && epsilon_greater_equal(bottom(), other.top());
158 }
159 
160 template<class vector_t>
161 constexpr std::optional<basic_rect<vector_t>> basic_rect<vector_t>::overlap(const basic_rect& other) const noexcept
162 {
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());
167 
168  if (epsilon_greater_equal(x2 - x1, static_cast<value_type>(0.0))
169  && epsilon_greater_equal(y2 - y1, static_cast<value_type>(0.0)))
170  {
171  return basic_rect({ x2 - x1, y2 - y1 }, { x1, y1 });
172  }
173  else
174  {
175  return std::nullopt;
176  }
177 }
178 
179 template<class vector_t>
180 constexpr bool basic_rect<vector_t>::operator==(const basic_rect& other) const noexcept
181 {
182  return epsilon_equal(left(), other.left()) && epsilon_equal(top(), other.top())
183  && epsilon_equal(width(), other.width()) && epsilon_equal(height(), other.height());
184 }
185 
186 template<class vector_t>
187 constexpr bool basic_rect<vector_t>::operator!=(const basic_rect& other) const noexcept
188 {
189  return !(*this == other);
190 }
191 
192 template<class vector_t>
193 constexpr void basic_rect<vector_t>::check_and_assign_size(const vector_t& size) noexcept
194 {
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));
197 }
198 
199 } // namespace qx
constexpr void shift(const vector_t &dPos) noexcept
Shift rect position.
Definition: rect.inl:55
constexpr value_type width() const noexcept
Get rect width.
Definition: rect.inl:85
constexpr vector_t center() const noexcept
Get rect center pos.
Definition: rect.inl:121
constexpr value_type height() const noexcept
Get rect height.
Definition: rect.inl:91
constexpr void set_pos(const vector_t &pos) noexcept
Set rect position.
Definition: rect.inl:49
constexpr value_type bottom() const noexcept
rect bottom border coordinate (y)
Definition: rect.inl:115
constexpr value_type top() const noexcept
rect top border coordinate (y)
Definition: rect.inl:109
constexpr bool empty() const noexcept
Is rect empty.
Definition: rect.inl:127
constexpr void contract(const vector_t &dSize) noexcept
Contract rect.
Definition: rect.inl:37
constexpr const vector_t & min() const noexcept
Get min rect pos.
Definition: rect.inl:67
constexpr std::optional< basic_rect > overlap(const basic_rect &other) const noexcept
Get rect representing overlap this rect by other rect.
Definition: rect.inl:161
constexpr value_type area() const noexcept
Calc rect area.
Definition: rect.inl:133
constexpr value_type right() const noexcept
rect right border coordinate (x)
Definition: rect.inl:103
constexpr value_type left() const noexcept
Get rect left border coordinate (x)
Definition: rect.inl:97
constexpr void set_size(const vector_t &size) noexcept
Change rect size.
Definition: rect.inl:43
constexpr bool overlaps(const basic_rect &other) const noexcept
Is this rect overlaps other rect.
Definition: rect.inl:154
constexpr const vector_t & pos() const noexcept
Get upper left corner pos.
Definition: rect.inl:61
constexpr vector_t max() const noexcept
Get max rect pos.
Definition: rect.inl:73
constexpr const vector_t & size() const noexcept
Get rect size.
Definition: rect.inl:79
constexpr bool contains(const vector_t &pos, const vector_t &originPos=vector_t(0.f)) const noexcept
Is point inside rect.
Definition: rect.inl:139
constexpr void expand(const vector_t &dSize) noexcept
Expand rect.
Definition: rect.inl:31
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.
Definition: common.inl:38
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.
Definition: common.inl:32
constexpr bool epsilon_equal(T left, T right, T eps=std::numeric_limits< T >::epsilon())
Constexpr comparison function for a user defined epsilon values.
Definition: common.inl:20
Check that tuple type contains T.