@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
22 lines (21 loc) • 916 B
TypeScript
/**
* Extrude the CSG geometry in a rectangle
*
*/
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 CSGExtrudeRectangularSopParamsConfig extends NodeParamsConfig {
/** @param size */
size: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.FLOAT>;
/** @param height */
height: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.FLOAT>;
}
export declare class CSGExtrudeRectangularSopNode extends CSGSopNode<CSGExtrudeRectangularSopParamsConfig> {
paramsConfig: CSGExtrudeRectangularSopParamsConfig;
static type(): SopType;
protected initializeNode(): void;
cook(inputCoreGroups: CoreGroup[]): void;
}
export {};