UNPKG

@polygonjs/polygonjs

Version:

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

23 lines (22 loc) 868 B
/** * Creates a CAD box. * * */ import { CADSopNode } from './_BaseCAD'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { SopType } from '../../poly/registers/nodes/types/Sop'; declare class CADBoxSopParamsConfig extends NodeParamsConfig { /** @param size */ size: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.FLOAT>; /** @param sizes */ sizes: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.VECTOR3>; /** @param center */ center: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.VECTOR3>; } export declare class CADBoxSopNode extends CADSopNode<CADBoxSopParamsConfig> { readonly paramsConfig: CADBoxSopParamsConfig; static type(): SopType; cook(): Promise<void>; } export {};