UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

15 lines (14 loc) 431 B
/** * gets the position where a ray intersects with a box3 * * @remarks * * */ import { BaseRayBox3JsNode } from './_BaseRayBox3'; import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController'; export declare class RayIntersectBoxJsNode extends BaseRayBox3JsNode { static type(): string; initializeNode(): void; setLines(shadersCollectionController: JsLinesCollectionController): void; }