Spaces:
Running
Running
File size: 256 Bytes
b24de8b |
1 2 3 4 5 6 7 8 9 |
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 };
|