-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRectangle.cpp
55 lines (44 loc) · 1.29 KB
/
Rectangle.cpp
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
#include "Rectangle.h"
Rectangle::Rectangle(const std::string& name, const Point& center, double width, double height)
: name(name), center(center), width(width), height(height) {
}
std::string Rectangle::getName() const {
return name;
}
void Rectangle::setName(const std::string& name) {
this->name = name;
}
Point Rectangle::getCenter() const {
return center;
}
void Rectangle::setCenter(const Point& center) {
this->center = center;
}
double Rectangle::getWidth() const {
return width;
}
void Rectangle::setWidth(double width) {
this->width = width;
}
double Rectangle::getHeight() const {
return height;
}
void Rectangle::setHeight(double height) {
this->height = height;
}
bool Rectangle::checkIfPointInZone(const Point& point) const {
if (point.x < (center.x + width / 2) && point.x > (center.x - width / 2) &&
point.y < (center.y + height / 2) && point.y > (center.y - height / 2)) {
return true;
} else {
return false;
}
}
bool Rectangle::checkIfPointWithinRange(const Point& point) const {
if (point.x < (1 + center.x + width/2) && point.x > (center.x - width/2 - 1) &&
point.y < 1 + (center.y + height/2) && point.y > (center.y - height/2 - 1)) {
return true;
} else {
return false;
}
}