UNPKG

@spearwolf/twopoint5d

Version:

a library to create 2.5d realtime graphics and pixelart with three.js

10 lines 285 B
import type { AABB2 } from '../AABB2.js'; export interface IDataChunk2D { left: number; top: number; right: number; bottom: number; containsDataAt(x: number, y: number): boolean; isIntersecting(aabb: AABB2): boolean; } //# sourceMappingURL=IDataChunk2D.d.ts.map