UNPKG

aabb-tree

Version:

Basic implementation of the AABB-Tree (Axis Aligned Box Bounding Tree)

10 lines (9 loc) 192 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Vector2 { constructor(X, Y) { this.X = X; this.Y = Y; } } exports.default = Vector2;