-
Notifications
You must be signed in to change notification settings - Fork 0
/
vec2.h
164 lines (134 loc) · 3.02 KB
/
vec2.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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
#ifndef __VEC2_H__
#define __VEC2_H__
#include <cmath>
template <class T>
class vec2 {
public:
T x, y;
vec2() :x(0), y(0) {}
vec2(T x, T y) : x(x), y(y) {}
vec2(const vec2& v) : x(v.x), y(v.y) {}
vec2& operator=(const vec2& v) {
x = v.x;
y = v.y;
return *this;
}
vec2 operator+(const vec2& v) const {
return vec2(x + v.x, y + v.y);
}
vec2 operator-(const vec2& v) const {
return vec2(x - v.x, y - v.y);
}
vec2 operator*(const vec2& v) const {
return vec2(x * v.x, y * v.y);
}
vec2& operator+=(const vec2& v) {
x += v.x;
y += v.y;
return *this;
}
vec2& operator-=(const vec2& v) {
x -= v.x;
y -= v.y;
return *this;
}
vec2& operator*=(const float v) {
x = x * v,
y = y * v;
return *this;
}
vec2 operator+(const T& s) const {
return vec2(x + s, y + s);
}
vec2 operator-(const T& s) const {
return vec2(x - s, y - s);
}
vec2 operator*(const T& s) const {
return vec2(x * s, y * s);
}
vec2 operator/(const T& s) const {
return vec2(x / s, y / s);
}
void set(T x, T y) {
this->x = x;
this->y = y;
}
void rotate(double deg) {
double theta = deg / 180.0 * M_PI;
double c = cos(theta);
double s = sin(theta);
double tx = x * c - y * s;
double ty = x * s + y * c;
x = tx;
y = ty;
}
vec2& normalize() {
if (length() == 0) return *this;
*this *= (1.0 / length());
return *this;
}
float dist(vec2 v) const {
vec2 d(v.x - x, v.y - y);
return d.length();
}
float length() const {
return std::sqrt(x * x + y * y);
}
void truncate(double length) {
double angle = atan2f(y, x);
x = length * cos(angle);
y = length * sin(angle);
}
vec2 ortho() const {
return vec2(y, -x);
}
static float dot(vec2 v1, vec2 v2) {
return v1.x * v2.x + v1.y * v2.y;
}
static float cross(vec2 v1, vec2 v2) {
return (v1.x * v2.y) - (v1.y * v2.x);
}
const float cross(vec2 v2) const
{
return (x * v2.y) - (y * v2.x);
}
const float dot(vec2 v2) const
{
return dot(*this, v2);
}
const vec2 perpCCW() const
{
return vec2(-y, x);
}
const vec2 perpCW() const
{
return vec2(y, -x);
}
};
typedef vec2<float> vec2f;
typedef vec2<double> vec2d;
#define PI 3.14159265359
template <class T>
const T min2(const T val1, const T val2)
{
return val1 < val2 ? val1 : val2;
}
template <class T>
const T max2(const T val1, const T val2)
{
return val1 > val2 ? val1 : val2;
}
template <class T>
float sign(const T val) {
return val > 0 ? 1 : val < 0 ? -1 : 0;
}
template <class T>
const T clamp(const T x, const T min, const T max)
{
if (x < min)
return min;
else if (x > max)
return max;
return x;
}
#endif