mirror of
https://github.com/pissang/claygl.git
synced 2026-01-25 16:46:30 +00:00
14 lines
271 B
TypeScript
14 lines
271 B
TypeScript
import { Vector3 } from './Vector3';
|
|
import { Plane } from './Plane';
|
|
|
|
|
|
export class Ray {
|
|
|
|
constructor(origin: Vector3, direction: Vector3);
|
|
constructor();
|
|
|
|
intersectPlane(plane: Plane, out?: Vector3): Vector3;
|
|
|
|
mirrorAgainstPlane(plane: Plane): void;
|
|
|
|
} |