forked from allain/JavaScript-Concept-Map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPoint.js
48 lines (40 loc) · 859 Bytes
/
Point.js
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
window.Point = function (x, y) {
this.x = x;
this.y = y;
this.toString = function () {
return "Point(" + x + ", " + y + ")";
}
};
window.Vector = function (x,y) {
this.x = x;
this.y = y;
this.scale = function(scale) {
this.x *= scale;
this.y *= scale;
return this;
}
this.translate = function() {
if (typeof(arguments[0]) === "object") {
this.x += arguments[0].x;
this.y += arguments[0].y;
} else {
this.x += arguments[0];
this.y += arguments[1];
}
return this;
}
this.length = function() {
return Math.sqrt(this.x * this.x + this.y * this.y);
}
this.normalize = function() {
var l = this.length();
if (l > 0) {
this.x /= l;
this.y /= l;
}
return this;
}
this.toString = function () {
return "Vector(" + x + ", " + y + ")";
}
}