1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
#pragma once
#include "Point.h"
#include "Size.h"
class Rect {
public:
Rect() { }
Rect(int x, int y, int width, int height)
: m_location(x, y)
, m_size(width, height)
{
}
Rect(const Point& location, const Size& size)
: m_location(location)
, m_size(size)
{
}
bool is_empty() const
{
return width() == 0 || height() == 0;
}
void moveBy(int dx, int dy)
{
m_location.moveBy(dx, dy);
}
void moveBy(const Point& delta)
{
m_location.moveBy(delta);
}
Point center() const
{
return { x() + width() / 2, y() + height() / 2 };
}
void inflate(int w, int h)
{
setX(x() - w / 2);
setWidth(width() + w);
setY(y() - h / 2);
setHeight(height() + h);
}
void shrink(int w, int h)
{
setX(x() + w / 2);
setWidth(width() - w);
setY(y() + h / 2);
setHeight(height() - h);
}
bool contains(int x, int y) const
{
return x >= m_location.x() && x < right() && y >= m_location.y() && y < bottom();
}
bool contains(const Point& point) const
{
return contains(point.x(), point.y());
}
int left() const { return x(); }
int right() const { return x() + width(); }
int top() const { return y(); }
int bottom() const { return y() + height(); }
void setLeft(int left)
{
setWidth(x() - left);
setX(left);
}
void setTop(int top)
{
setHeight(y() - top);
setY(top);
}
bool intersects(const Rect& other) const
{
return left() < other.right()
&& other.left() < right()
&& top() < other.bottom()
&& other.top() < bottom();
}
int x() const { return location().x(); }
int y() const { return location().y(); }
int width() const { return m_size.width(); }
int height() const { return m_size.height(); }
void setX(int x) { m_location.setX(x); }
void setY(int y) { m_location.setY(y); }
void setWidth(int width) { m_size.setWidth(width); }
void setHeight(int height) { m_size.setHeight(height); }
Point location() const { return m_location; }
Size size() const { return m_size; }
bool operator==(const Rect& other) const
{
return m_location == other.m_location
&& m_size == other.m_size;
}
void intersect(const Rect&);
static Rect intersection(const Rect& a, const Rect& b)
{
Rect r(a);
r.intersect(b);
return a;
}
private:
Point m_location;
Size m_size;
};
|