UNPKG

@thi.ng/boids

Version:

n-dimensional boids simulation with modular behavior system

12 lines 466 B
import type { IBoidAccel } from "./api.js"; /** * Dummy {@link IBoidAccel} implementation (i.e does no spatial indexing and * always processes _all_ boids). * * @remarks * Due to no incurred overhead for (re)constructing the acceleration structure, * for low numbers of boids this can actually be more efficient than using a * `HashGrid` (from thi.ng/geom-accel package). */ export declare const noAccel: () => IBoidAccel; //# sourceMappingURL=accel.d.ts.map