-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathvector.js
244 lines (218 loc) · 7.06 KB
/
vector.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
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
import Position from "@pencil.js/position";
/**
* @module Vector
*/
const allEquals = (...args) => args.slice(1).every(a => a === args[0]);
/**
* Accept all kind of type and return only Number or Position
* @param {VectorDefinition|PositionDefinition|Number} definition - Value definition
* @return {Position|Number}
*/
function sanitizeParameters (definition) {
// Number or Position
if (typeof definition === "number" || definition instanceof Position) {
return definition;
}
// Anything with a getDelta function
if (typeof definition.getDelta === "function") {
return definition.getDelta();
}
// PositionDefinition
if (typeof definition[0] === "number" && typeof definition[1] === "number") {
return Position.from(definition);
}
// eslint-disable-next-line no-use-before-define
return Vector.from(definition).getDelta();
}
/**
* Vector class
*/
export default class Vector {
/**
* Vector constructor
* @param {PositionDefinition} start - Starting vector's position
* @param {PositionDefinition} end - Ending vector's position
*/
constructor (start, end) {
this.start = Position.from(start);
this.end = Position.from(end);
}
/**
* Get this vector horizontal component
* @return {Number}
*/
get width () {
return Math.abs(this.start.x - this.end.x);
}
/**
* Get this vector vertical component
* @return {Number}
*/
get height () {
return Math.abs(this.start.y - this.end.y);
}
/**
* Return this vector's length
* @return {Number}
*/
get length () {
return this.start.distance(this.end);
}
/**
* Create a new copy of this vector
* @return {Vector}
*/
clone () {
return new Vector(this.start.clone(), this.end.clone());
}
/**
* Determine if is equal to another vector
* @param {VectorDefinition} vectorDefinition - Any vector
* @return {Boolean}
*/
equals (vectorDefinition) {
const vector = Vector.from(vectorDefinition);
return this.start.equals(vector.start) && this.end.equals(vector.end);
}
/**
* Get the vector move with start at (0, 0)
* @return {Position}
*/
getDelta () {
return this.end.clone().subtract(this.start);
}
/**
* Add a vector
* @param {VectorDefinition|PositionDefinition|Number} modification - Any Vector or Position or Number
* @return {Vector} Itself
*/
add (modification) {
const toAdd = sanitizeParameters(modification);
this.end.add(toAdd);
return this;
}
/**
* Move this vector
* @param {VectorDefinition|PositionDefinition|Number} modification - Any Vector or Position or Number
* @return {Vector} Itself
*/
translate (modification) {
const toAdd = sanitizeParameters(modification);
this.start.add(toAdd);
this.end.add(toAdd);
return this;
}
/**
* Multiply this vector
* @param {VectorDefinition|PositionDefinition|Number} modification - Any Vector or Position or Number
* @return {Vector} Itself
*/
multiply (modification) {
if (typeof modification === "number") {
this.add(this.getDelta().multiply(modification - 1));
return this;
}
const toMultiply = sanitizeParameters(modification);
this.end.multiply(toMultiply);
return this;
}
/**
* Define if this vector intersect another
* @param {VectorDefinition} vectorDefinition - Any vector
* @return {Boolean}
*/
intersect (vectorDefinition) {
const vector = Vector.from(vectorDefinition);
if (!(this.start.isOnSameSide(this.end, vector) || vector.start.isOnSameSide(vector.end, this))) {
return true;
}
const delta = this.getDelta();
const startDiff = vector.start.clone().subtract(this.start);
// Collinear
if (delta.crossProduct(startDiff) === 0 && delta.crossProduct(vector.getDelta()) === 0) {
// Overlap
return !allEquals(
this.start.x < vector.start.x,
this.start.x < vector.end.x,
this.end.x < vector.start.x,
this.end.x < vector.end.x,
) || !allEquals(
this.start.y < vector.start.y,
this.start.y < vector.end.y,
this.end.y < vector.start.y,
this.end.y < vector.end.y,
);
}
return false;
}
/**
* Return the intersection point between two vector or null if no intersection happen
* @param {VectorDefinition} vectorDefinition - Any vector
* @return {Position}
*/
getIntersectionPoint (vectorDefinition) {
const vector = Vector.from(vectorDefinition);
if (!this.intersect(vector)) {
return null;
}
const delta = vector.getDelta();
const determinant = this.getDelta().crossProduct(delta);
if (determinant === 0) {
return this.start.clone()
.constrain(vector.start, vector.end)
.lerp(this.end.clone().constrain(vector.start, vector.end), 0.5);
}
const diff = this.start.clone().subtract(vector.start);
return this.start.clone().lerp(this.end, (delta.crossProduct(diff)) / determinant);
}
/**
* Find the closest position to a point on this vector
* @param {PositionDefinition} positionDefinition - Any position
* @return {Position}
*/
getClosestToPoint (positionDefinition) {
const position = Position.from(positionDefinition);
const aToP = (new Vector(this.start, position)).getDelta();
const aToB = this.getDelta();
const t = aToP.dotProduct(aToB) / (this.length ** 2);
return this.start.clone().add(aToB.multiply(t)).constrain(this.start, this.end);
}
/**
* Return a JSON ready Vector definition
* @return {Array<Array<Number>>}
*/
toJSON () {
const { start, end } = this;
return [
start,
end,
];
}
/**
* @typedef {Object} AbstractVector
* @prop {PositionDefinition} [start] - Start coordinates
* @prop {PositionDefinition} [end] - End coordinates
*/
/**
* @typedef {Array<PositionDefinition>|AbstractVector} VectorDefinition
*/
/**
* Create a Vector from a generic definition
* @param {VectorDefinition} [vectorDefinition] - Vector definition
* @return {Vector}
*/
static from (vectorDefinition = new Vector()) {
if (vectorDefinition instanceof Vector) {
return vectorDefinition;
}
if (Array.isArray(vectorDefinition) && vectorDefinition.length === 2) {
return new Vector(...vectorDefinition);
}
try {
return new Vector(vectorDefinition.start, vectorDefinition.end);
}
catch {
throw new TypeError(`Unexpected type for vector: ${JSON.stringify(vectorDefinition)}.`);
}
}
}