@iamnotstone/aabb-tree
Version:
Basic implementation of the AABB-Tree (Axis Aligned Box Bounding Tree)
11 lines (10 loc) • 646 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.PolygonalPrism = exports.Cylinder = void 0;
var Cylinder_1 = require("./Cylinder");
Object.defineProperty(exports, "Cylinder", { enumerable: true, get: function () { return __importDefault(Cylinder_1).default; } });
var PolygonalPrism_1 = require("./PolygonalPrism");
Object.defineProperty(exports, "PolygonalPrism", { enumerable: true, get: function () { return __importDefault(PolygonalPrism_1).default; } });