@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
27 lines (26 loc) • 803 B
TypeScript
/**
* returns true if a box contains a point
*
* @remarks
*
*
*/
import { TypedJsNode } from './_Base';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController';
export declare enum Box3IntersectsBox3InputName {
BOX3a = "Box3a",
BOX3b = "Box3b"
}
export declare enum Box3IntersectsBox3OutputName {
INTERSECTS = "intersects"
}
declare class Box3IntersectsBox3JsParamsConfig extends NodeParamsConfig {
}
export declare class Box3IntersectsBox3JsNode extends TypedJsNode<Box3IntersectsBox3JsParamsConfig> {
paramsConfig: Box3IntersectsBox3JsParamsConfig;
static type(): string;
initializeNode(): void;
setLines(linesController: JsLinesCollectionController): void;
}
export {};