Press n or j to go to the next uncovered block, b, p or k for the previous block.
// Axis-aligned bounding box 2D interface AABB2 { minX: number; maxX: number; minY: number; maxY: number; } export type { AABB2 as default };