UNPKG

@mousepox/math

Version:

Math-related objects and utilities

11 lines (10 loc) 293 B
import { IRectangle } from "./core"; export declare type SpatialHashPair = [IRectangle, IRectangle]; export declare class SpatialHash { pairs: SpatialHashPair[]; private size; private buckets; constructor(size: number); clear(): void; insert(rect: IRectangle): void; }