Spaces:
Running
Running
File size: 319 Bytes
b24de8b |
1 2 3 4 5 6 7 8 |
import { Splat } from "../../../splats/Splat";
import { RenderProgram } from "../programs/RenderProgram";
declare class IntersectionTester {
testPoint: (x: number, y: number) => Splat | null;
constructor(renderProgram: RenderProgram, maxDistance?: number, resolution?: number);
}
export { IntersectionTester };
|