UNPKG

@polygonjs/polygonjs

Version:

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

21 lines (20 loc) 829 B
import { BaseSopOperation } from './_Base'; import { CoreGroup } from '../../../core/geometry/Group'; import { InputCloneMode } from '../../poly/InputCloneMode'; import { DefaultOperationParams } from '../../../core/operations/_Base'; interface CurveFromPointsSopParams extends DefaultOperationParams { pointsCount: number; closed: boolean; curveType: number; tension: number; tTangent: boolean; tangentName: string; } export declare class CurveFromPointsSopOperation extends BaseSopOperation { static readonly DEFAULT_PARAMS: CurveFromPointsSopParams; static readonly INPUT_CLONED_STATE = InputCloneMode.NEVER; static type(): Readonly<'curveFromPoint'>; cook(inputCoreGroups: CoreGroup[], params: CurveFromPointsSopParams): CoreGroup; private _createCurveFromCoreObject; } export {};