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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
|
import { test, assert } from '../test-assert.js';
import { AABB, QTNode, QuadTree } from './Geometry.js';
const RUN_BENCHMARKS = false;
test('AABB correctly contains/excludes points', () => {
const box = new AABB(0, 0, 1, 1);
// interior
assert.ok(box.contains({ x: 0.5, y: 0.5 }));
// upper left
assert.ok(!box.contains({ x: -1, y: -1 }));
// above
assert.ok(!box.contains({ x: 0.5, y: -1}));
// upper right
assert.ok(!box.contains({ x: 2, y: -1 }));
// left
assert.ok(!box.contains({ x: -1, y: 0.5 }));
// right
assert.ok(!box.contains({ x: 2, y: 0.5}));
// lower left
assert.ok(!box.contains({ x: -1, y: 2 }));
// below
assert.ok(!box.contains({ x: 0.5, y: 2}));
// lower right
assert.ok(!box.contains({ x: 2, y: 2 }));
});
test('AABB correctly intersects other AABBs', () => {
const box = new AABB(1, 1, 4, 4);
// interior
assert.ok(box.intersects(new AABB(2, 2, 2, 2,)));
// upper left
assert.ok(box.intersects(new AABB(0, 0, 4, 4)));
assert.ok(!box.intersects(new AABB(0, 0, 0.5, 0.5)));
// above
assert.ok(box.intersects(new AABB(2, 0, 2, 2)));
assert.ok(!box.intersects(new AABB(2, 0, 2, 0.5)));
// upper right
assert.ok(box.intersects(new AABB(2, 0, 4, 2)));
assert.ok(!box.intersects(new AABB(6, 0, 4, 2)));
// left
assert.ok(box.intersects(new AABB(0, 2, 2, 2)));
assert.ok(!box.intersects(new AABB(0, 2, 0.5, 2)));
// right
assert.ok(box.intersects(new AABB(4, 2, 2, 2)));
assert.ok(!box.intersects(new AABB(6, 2, 2, 2)));
// lower left
assert.ok(box.intersects(new AABB(0, 4, 4, 4)));
assert.ok(!box.intersects(new AABB(0, 6, 0.5, 0.5)));
// below
assert.ok(box.intersects(new AABB(2, 4, 2, 2)));
assert.ok(!box.intersects(new AABB(2, 6, 2, 0.5)));
// lower right
assert.ok(box.intersects(new AABB(2, 4, 4, 2)));
assert.ok(!box.intersects(new AABB(6, 6, 4, 2)));
});
test('AABB correctly handles points at the edges', () => {
const box = new AABB(0, 0, 1, 1);
assert.ok(box.contains({ x: 0, y: 0 }));
assert.ok(box.contains({ x: 0.5, y: 0 }));
assert.ok(box.contains({ x: 0, y: 0.5 }));
// bad corners
assert.ok(!box.contains({ x: 1, y: 0 }));
assert.ok(!box.contains({ x: 0, y: 1 }));
assert.ok(!box.contains({ x: 1, y: 1 }));
// bad edges
assert.ok(!box.contains({ x: 1, y: 0.5 }));
assert.ok(!box.contains({ x: 0.5, y: 1 }));
});
test('QTNode correctly inserts points', () => {
const node = new QTNode(0, 0, 1, 1);
assert.equal(node.type.toString(), 'QTNode.Empty');
let result = node.insert({ x: -1, y: -1 }); // out of range, should not insert
assert.ok(!result);
assert.equal(node.type.toString(), 'QTNode.Empty');
result = node.insert({ x: 0.5, y: 0.5 }); // in range
assert.ok(result);
assert.equal(node.type.toString(), 'QTNode.Leaf');
assert.deepEqual(node.point, { x: 0.5, y: 0.5 });
});
test('QTNode correctly subdivides', () => {
const node = new QTNode(0, 0, 2, 2);
assert.ok(!node.subnode);
node.subdivide();
assert.equal(node.subnode.length, 4);
assert.deepEqual(node.subnode[0], new QTNode(0, 0, 1, 1));
assert.deepEqual(node.subnode[1], new QTNode(1, 0, 1, 1));
assert.deepEqual(node.subnode[2], new QTNode(0, 1, 1, 1));
assert.deepEqual(node.subnode[3], new QTNode(1, 1, 1, 1));
});
test('QTNode correctly inserts multiple points', () => {
const node = new QTNode(0, 0, 2, 2);
const p0 = { x: 1, y: 1 };
const p1 = { x: 0.5, y: 0.5 };
const oob = { x: 10, y: 15 };
assert.ok(node.insert(p0));
assert.ok(node.insert(p1));
assert.ok(!node.insert(oob));
assert.equal(node.type.toString(), 'QTNode.Branch');
assert.equal(node.subnode[0].type.toString(), 'QTNode.Leaf');
assert.deepEqual(node.subnode[0].point, p1);
assert.equal(node.subnode[1].type.toString(), 'QTNode.Empty');
assert.equal(node.subnode[2].type.toString(), 'QTNode.Empty');
assert.equal(node.subnode[3].type.toString(), 'QTNode.Leaf');
assert.deepEqual(node.subnode[3].point, p0);
});
const randomPoint = () => ({ x: Math.random(), y: Math.random() });
test('QTNode correctly returns points in region', () => {
const node = new QTNode(0, 0, 1, 1);
let points = [];
for (let i=0; i<100; i++) {
const pt = randomPoint();
node.insert(pt);
points.push(pt);
}
const pointsInRegion = aabb => {
let pts = [];
for (let pt of points) {
if (aabb.contains(pt)) pts.push(pt);
}
return pts;
};
const region = new AABB(0.25, 0.25, 0.5, 0.5);
let bf_points = pointsInRegion(region);
let qt_points = node.getPointsInRegion(region);
const compare = (a, b) => {
if (a.x == b.x)
return b.y - a.y;
return b.x - a.x;
};
bf_points.sort(compare);
qt_points.sort(compare);
assert.deepEqual(bf_points, qt_points);
});
test('QTNode correctly removes immediate child point', () => {
const node = new QTNode(0, 0, 1, 1);
const pt = randomPoint();
node.insert(pt);
assert.deepEqual(node.type, QTNode.Leaf);
const pt2 = randomPoint();
node.remove(pt2);
assert.deepEqual(node.type, QTNode.Leaf);
assert.deepEqual(node.point, pt);
node.remove(pt);
assert.deepEqual(node.type, QTNode.Empty);
assert.equal(node.point, undefined);
});
test('QTNode correctly removes point from branch', () => {
for (let i=0; i<100; i++) {
const node = new QTNode(0, 0, 1, 1);
const pt1 = randomPoint();
const pt2 = randomPoint();
const pt3 = randomPoint();
node.insert(pt1); node.insert(pt2); node.insert(pt3);
assert.deepEqual(node.type, QTNode.Branch);
node.remove(pt1);
// should still be a branch because there are two child points yet
assert.deepEqual(node.type, QTNode.Branch);
node.remove(pt2);
// just one now, should be a leaf
assert.deepEqual(node.type, QTNode.Leaf);
node.remove(pt3);
// empty
assert.deepEqual(node.type, QTNode.Empty);
}
});
test('QuadTree correctly finds closest point for 10,000 random points', () => {
const tree = new QuadTree(1, 1);
let points = [];
for (let i=0; i<10000; i++) {
const pt = randomPoint();
tree.insert(pt);
points.push(pt);
}
const distance = (a, b) => Math.sqrt((a.x - b.x)**2 + (a.y - b.y)**2);
const bf_closest = a => {
let closest = null;
let min_dist = 1000;
for (let b of points) {
let d = distance(a, b);
if (d < min_dist) {
min_dist = d;
closest = b;
}
}
return closest;
}
for (let i=0; i<10000; i++) {
const pt = randomPoint();
assert.deepEqual(bf_closest(pt), tree.closest(pt));
}
});
function benchmark(desc, f, iterations) {
process.stdout.write(`${desc}: `);
const start = process.uptime();
for (let i=0; i<iterations; i++) f();
const elapsed = process.uptime() - start;
console.log(`${elapsed} seconds`);
}
const closest_benchmark = () => {
const n_points = 1e5;
const iterations = 1e4;
console.log(`> benchmark get closest of ${n_points} random points ${iterations} times`);
const tree = new QuadTree(1, 1);
let points = [];
for (let i=0; i<n_points; i++) {
const pt = randomPoint();
tree.insert(pt);
points.push(pt);
}
const distance = (a, b) => Math.sqrt((a.x - b.x)**2 + (a.y - b.y)**2);
const bf_closest = a => {
let closest = null;
let min_dist = 1000;
for (let b of points) {
let d = distance(a, b);
if (d < min_dist) {
min_dist = d;
closest = b;
}
}
return closest;
}
benchmark('\tbrute force', () => {
const pt = randomPoint();
bf_closest(pt);
}, iterations);
benchmark('\tquadtree', () => {
const pt = randomPoint();
tree.closest(pt);
}, iterations);
}
if (RUN_BENCHMARKS)
closest_benchmark();
|