UNPKG

@polygonjs/polygonjs

Version:

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

25 lines (24 loc) 959 B
/** * Projects a 3D shape onto a plane and outputs a curve out of the resulting shape * * */ import { CSGSopNode } from './_BaseCSG'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { CoreGroup } from '../../../core/geometry/Group'; import { SopType } from '../../poly/registers/nodes/types/Sop'; declare class CSGProjectSopParamsConfig extends NodeParamsConfig { /** @param axis */ axis: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.VECTOR3>; /** @param origin */ origin: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.VECTOR3>; } export declare class CSGProjectSopNode extends CSGSopNode<CSGProjectSopParamsConfig> { paramsConfig: CSGProjectSopParamsConfig; static type(): SopType; protected initializeNode(): void; private _axis; private _origin; cook(inputCoreGroups: CoreGroup[]): void; } export {};