UNPKG

aabb-tree

Version:

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

7 lines (6 loc) 295 B
export { default as AABB } from './AABB'; export { default as AABBNode } from './AABBNode'; export { default as AABBTree } from './AABBTree'; export { default as Vector3 } from './Vector3'; export { default as Vector2 } from './Vector2'; export { default as AABBShapeBase } from './IAABBShape';