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