UNPKG

@polygonjs/polygonjs

Version:

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

22 lines (21 loc) 739 B
/** * creates a 3D box * * @remarks * * */ import { TypedJsNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController'; declare class Box3SetFromObjectJsParamsConfig extends NodeParamsConfig { /** @param precise */ precise: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.BOOLEAN>; } export declare class Box3SetFromObjectJsNode extends TypedJsNode<Box3SetFromObjectJsParamsConfig> { paramsConfig: Box3SetFromObjectJsParamsConfig; static type(): string; initializeNode(): void; setLines(linesController: JsLinesCollectionController): void; } export {};