2018-10-10 18:06:58 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
class Point {
|
|
|
|
public:
|
|
|
|
Point() { }
|
|
|
|
Point(int x, int y) : m_x(x) , m_y(y) { }
|
|
|
|
|
|
|
|
int x() const { return m_x; }
|
|
|
|
int y() const { return m_y; }
|
|
|
|
|
|
|
|
void setX(int x) { m_x = x; }
|
|
|
|
void setY(int y) { m_y = y; }
|
|
|
|
|
|
|
|
void moveBy(int dx, int dy)
|
|
|
|
{
|
|
|
|
m_x += dx;
|
|
|
|
m_y += dy;
|
|
|
|
}
|
|
|
|
|
2018-10-12 00:41:27 +00:00
|
|
|
void moveBy(const Point& delta)
|
|
|
|
{
|
|
|
|
moveBy(delta.x(), delta.y());
|
|
|
|
}
|
|
|
|
|
2018-10-11 23:03:22 +00:00
|
|
|
bool operator==(const Point& other) const
|
|
|
|
{
|
|
|
|
return m_x == other.m_x
|
|
|
|
&& m_y == other.m_y;
|
|
|
|
}
|
|
|
|
|
2018-10-10 18:06:58 +00:00
|
|
|
private:
|
|
|
|
int m_x { 0 };
|
|
|
|
int m_y { 0 };
|
|
|
|
};
|