webcad-api/types/Geometry/Plane.d.ts
2020-09-24 11:04:12 +08:00

7 lines
373 B
TypeScript

import { Line3, Plane, Ray, Vector3 } from "three";
export declare class PlaneExt extends Plane {
constructor(normal?: Vector3, constant?: number | Vector3);
intersectLine(line: Line3, optionalTarget?: Vector3, extendLine?: boolean): Vector3;
intersectRay(ray: Ray, optionalTarget?: Vector3, extendLine?: boolean): Vector3;
}
//# sourceMappingURL=Plane.d.ts.map