UNPKG

@polygonjs/polygonjs

Version:

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

19 lines (18 loc) 637 B
/** * Creates a CAD arc from 3 points. * * */ import { CADSopNode } from './_BaseCAD'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { SopType } from '../../poly/registers/nodes/types/Sop'; import { CoreGroup } from '../../../core/geometry/Group'; declare class CADCircle3PointsSopParamsConfig extends NodeParamsConfig { } export declare class CADCircle3PointsSopNode extends CADSopNode<CADCircle3PointsSopParamsConfig> { paramsConfig: CADCircle3PointsSopParamsConfig; static type(): SopType; protected initializeNode(): void; cook(inputCoreGroups: CoreGroup[]): Promise<void>; } export {};