forked from Littlefean/Minecraft2D
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vec.cpp
67 lines (53 loc) · 1.22 KB
/
Vec.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
56
57
58
59
60
61
62
63
64
65
//
// Created by 20281 on 2023/1/12.
//
#include <vector>
#include <iostream>
#include "myRandom.h"
#include "Vec.h"
using namespace std;
Vec::Vec(int x, int y) {
this->x = x;
this->y = y;
}
Vec::Vec() {
this->x = 0;
this->y = 0;
}
/**
* 在 0~width-1 之内,0~height-1之内随机取一个点
* @param width
* @param height
* @return
*/
Vec Vec::randomVec(int width, int height) {
return Vec{randint(width), randint(height)};
}
bool Vec::operator<(const Vec &v) const {
if (this->x < v.x)return true;
if (this->x > v.x)return false;
if (this->y < v.y)return true;
return false;
}
Vec Vec::operator+(const Vec &v) const {
Vec res{this->x + v.x, this->y + v.y};
return res;
}
bool Vec::operator==(const Vec &v) const {
return v.x == this->x && v.y == this->y;
}
ostream &operator<<(ostream &os, const Vec &p) {
return os << "(" << p.x << "," << p.y << ")";
};
/**
* 获取一个坐标点的上下左右四个位置
* @return
*/
vector<Vec> Vec::getRoundLoc() {
vector<Vec> res;
res.emplace_back(this->x + 1, this->y);
res.emplace_back(this->x - 1, this->y);
res.emplace_back(this->x, this->y + 1);
res.emplace_back(this->x, this->y - 1);
return res;
}