-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVector2.cpp
119 lines (91 loc) · 1.68 KB
/
Vector2.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
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
#include "Vector2.h"
#include <cmath>
using namespace std;
Vector2::Vector2()
: X(0), Y(0)
{}
Vector2::Vector2(double x, double y)
: X(x), Y(y)
{ }
void Vector2::InverseX()
{
X = -X;
}
void Vector2::InverseY()
{
Y = -Y;
}
void Vector2::Rotate(double angle)
{
angle = angle * 180 / M_PI;
double oldX = X;
double oldY = Y;
X = oldX * cos(angle) - oldY * sin(angle);
Y = oldX * sin(angle) + oldY * cos(angle);
}
Vector2 Vector2::UnitVector()
{
return (X == 0 && Y == 0) ? NullVector() : Vector2(X / Magnitude(), Y / Magnitude());
}
void Vector2::ScaleToMagnitude(double magnitude)
{
Vector2 unit = UnitVector();
X = unit.X * magnitude;
Y = unit.Y * magnitude;
}
double Vector2::Magnitude() const
{
return sqrt(X * X + Y * Y);
}
Vector2 Vector2::operator+(const Vector2& v) const
{
Vector2 res(X + v.X, Y + v.Y);
return res;
}
Vector2 Vector2::operator-(const Vector2& v) const
{
Vector2 res(X - v.X, Y - v.Y);
return res;
}
Vector2 Vector2::operator*(double a) const
{
Vector2 res(X * a, Y * a);
return res;
}
Vector2 Vector2::operator/(double a) const
{
Vector2 res(X / a, Y / a);
return res;
}
Vector2 Vector2::operator+=(const Vector2& v)
{
X += v.X;
Y += v.Y;
return *this;
}
Vector2 Vector2::operator-=(const Vector2& v)
{
X -= v.X;
Y -= v.Y;
return *this;
}
Vector2 Vector2::operator*=(double a)
{
X *= a;
Y *= a;
return *this;
}
Vector2 Vector2::operator/=(double a)
{
X /= a;
Y /= a;
return *this;
}
bool Vector2::operator==(const Vector2& v) const
{
return (v.X == X) && (v.Y == Y);
}
Vector2 Vector2::NullVector()
{
return Vector2(0, 0);
}