UNPKG

aabb-tree

Version:

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

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