-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvector2.js
115 lines (93 loc) · 3.15 KB
/
vector2.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
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
// Generated by CoffeeScript 1.6.3
(function() {
var Vector, css_properties;
css_properties = ['top', 'left'];
Vector = (function() {
function Vector() {
var object;
if (typeof arguments[0] === 'object') {
object = arguments[0];
if ((object.x != null) && (object.y != null)) {
this.x = object.x, this.y = object.y;
} else if ((object.left != null) && (object.top != null)) {
this.x = object.left, this.y = object.top;
}
} else {
this.x = arguments[0], this.y = arguments[1];
}
}
Vector.prototype.components = function() {
return [this.x, this.y];
};
Vector.prototype.reduce = function(initial, action) {
return _.reduce(this.components(), action, initial);
};
Vector.prototype.fmap = function(action) {
return (function(func, args, ctor) {
ctor.prototype = func.prototype;
var child = new ctor, result = func.apply(child, args);
return Object(result) === result ? result : child;
})(Vector, _.map(this.components(), action), function(){});
};
Vector.prototype.vmap = function(vector, action) {
return (function(func, args, ctor) {
ctor.prototype = func.prototype;
var child = new ctor, result = func.apply(child, args);
return Object(result) === result ? result : child;
})(Vector, _.map(_.zip(this.components(), vector.components()), function(components) {
return action.apply(null, components);
}), function(){});
};
Vector.prototype.magnitude = function() {
return Math.sqrt(this.reduce(0, function(accumulator, component) {
return accumulator + component * component;
}));
};
Vector.prototype.scale = function(factor) {
return this.fmap(function(component) {
return component * factor;
});
};
Vector.prototype.invert = function() {
return this.scale(-1);
};
Vector.prototype.add = function(vector) {
return this.vmap(vector, function(c1, c2) {
return c1 + c2;
});
};
Vector.prototype.subtract = function(vector) {
return this.add(vector.invert());
};
Vector.prototype.as_css = function() {
return {
left: this.x,
top: this.y
};
};
Vector.prototype.equals = function(vector) {
return _.all(_.zip(this.components(), vector.components()), function(item) {
return item[0] === item[1];
});
};
Vector.prototype.distance = function(vector) {
return this.minus(vector).magnitude();
};
Vector.prototype.unit = function() {
return this.scale(1 / this.magnitude());
};
Vector.prototype.angle = function() {
return Math.atan2(this.y, this.x);
};
return Vector;
})();
Vector.prototype.plus = Vector.prototype.add;
Vector.prototype.minus = Vector.prototype.subtract;
window.V = function() {
return (function(func, args, ctor) {
ctor.prototype = func.prototype;
var child = new ctor, result = func.apply(child, args);
return Object(result) === result ? result : child;
})(Vector, arguments, function(){});
};
}).call(this);