blob: a2aefaf9c82949e60f1124eaf4fb5486290e56bb (
plain)
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
|
#include "Vertex.h"
#include <math.h>
double Vertex::distanceSq(const Vertex &v) const {
return (x - v.x)*(x - v.x) + (y - v.y)*(y - v.y);
}
double Vertex::distance(const Vertex &v) const {
return sqrt(distanceSq(v));
}
Vertex Vertex::operator+(const Vertex &v) const {
return Vertex(x + v.x, y + v.y);
}
Vertex Vertex::operator-(const Vertex &v) const {
return Vertex(x - v.x, y - v.y);
}
Vertex& Vertex::operator+=(const Vertex &v) {
x += v.x;
y += v.y;
return *this;
}
Vertex& Vertex::operator-=(const Vertex &v) {
x -= v.x;
y -= v.y;
return *this;
}
|