UNPKG

@polygonjs/polygonjs

Version:

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

19 lines (18 loc) 612 B
/** * Creates a 2D point. * * */ import { CADSopNode } from './_BaseCAD'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { SopType } from '../../poly/registers/nodes/types/Sop'; declare class CADPoint2DSopParamsConfig extends NodeParamsConfig { /** @param center */ center: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.VECTOR2>; } export declare class CADPoint2DSopNode extends CADSopNode<CADPoint2DSopParamsConfig> { paramsConfig: CADPoint2DSopParamsConfig; static type(): SopType; cook(): Promise<void>; } export {};