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