@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
15 lines (14 loc) • 437 B
TypeScript
/**
* gets the position where a ray intersects with a plane
*
* @remarks
*
*
*/
import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController';
import { BaseRayPlaneJsNode } from './_BaseRayPlane';
export declare class RayIntersectPlaneJsNode extends BaseRayPlaneJsNode {
static type(): string;
initializeNode(): void;
setLines(shadersCollectionController: JsLinesCollectionController): void;
}