gsplat_library / dist /renderers /webgl /utils /IntersectionTester.d.ts
bilca's picture
Upload 43 files
b24de8b verified
raw
history blame
319 Bytes
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 };