gsplat_library / dist /math /Plane.d.ts
bilca's picture
Upload 43 files
b24de8b verified
raw
history blame
256 Bytes
import { Vector3 } from "./Vector3";
declare class Plane {
readonly normal: Vector3;
readonly point: Vector3;
constructor(normal: Vector3, point: Vector3);
intersect(origin: Vector3, direction: Vector3): Vector3 | null;
}
export { Plane };