@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
29 lines (28 loc) • 2.14 kB
TypeScript
import { BaseNodeType } from '../../../../../engine/nodes/_Base';
import { Constructor } from '../../../../../types/GlobalTypes';
export declare function SOPCSGTesselationParamConfig<TBase extends Constructor>(Base: TBase): {
new (...args: any[]): {
/** @param linear Tolerance */
facetAngle: import("../../../../../engine/nodes/utils/params/ParamsConfig").ParamTemplate<import("../../../../../engine/index_all").ParamType.FLOAT>;
/** @param edges color */
linesColor: import("../../../../../engine/nodes/utils/params/ParamsConfig").ParamTemplate<import("../../../../../engine/index_all").ParamType.COLOR>;
/** @param meshes color */
meshesColor: import("../../../../../engine/nodes/utils/params/ParamsConfig").ParamTemplate<import("../../../../../engine/index_all").ParamType.COLOR>;
/** @param wireframe */
wireframe: import("../../../../../engine/nodes/utils/params/ParamsConfig").ParamTemplate<import("../../../../../engine/index_all").ParamType.BOOLEAN>;
};
} & TBase;
export declare function OBJCSGTesselationParamConfig<TBase extends Constructor>(Base: TBase): {
new (...args: any[]): {
/** @param linear Tolerance */
CSGFacetAngle: import("../../../../../engine/nodes/utils/params/ParamsConfig").ParamTemplate<import("../../../../../engine/index_all").ParamType.FLOAT>;
/** @param edges color */
CSGLinesColor: import("../../../../../engine/nodes/utils/params/ParamsConfig").ParamTemplate<import("../../../../../engine/index_all").ParamType.COLOR>;
/** @param meshes color */
CSGMeshesColor: import("../../../../../engine/nodes/utils/params/ParamsConfig").ParamTemplate<import("../../../../../engine/index_all").ParamType.COLOR>;
/** @param wireframe */
CSGWireframe: import("../../../../../engine/nodes/utils/params/ParamsConfig").ParamTemplate<import("../../../../../engine/index_all").ParamType.BOOLEAN>;
};
} & TBase;
export declare const TESSELATION_PARAM_NAMES: Set<string>;
export declare function addCSGTesselationParamsCallback(node: BaseNodeType, callback: () => void): void;