-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCPoint.h
52 lines (37 loc) · 880 Bytes
/
CPoint.h
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
//
// Created by tc-imba on 18-3-8.
//
#ifndef CPOINT_H
#define CPOINT_H
class CPoint {
public:
int x, y;
CPoint() : x(0), y(0) {}
CPoint(int initX, int initY) : x(initX), y(initY) {}
bool operator==(const CPoint &that) {
return x == that.x && y == that.y;
}
bool operator!=(const CPoint &that) {
return x != that.x || y != that.y;
}
CPoint operator+(const CPoint &that) {
return {x + that.x, y + that.y};
}
CPoint operator-(const CPoint &that) {
return {x - that.x, y - that.y};
}
CPoint operator-() {
return {-x, -y};
}
CPoint &operator+=(const CPoint &that) {
x += that.x;
y += that.y;
return *this;
}
CPoint &operator-=(const CPoint &that) {
x -= that.x;
y -= that.y;
return *this;
}
};
#endif //CPOINT_H