@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
21 lines (20 loc) • 794 B
TypeScript
/**
* resets the CSG geometry transform matrix
*
*
*/
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 CSGTransformResetSopParamsConfig extends NodeParamsConfig {
/** @param bake matrix onto points */
extract: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.BOOLEAN>;
}
export declare class CSGTransformResetSopNode extends CSGSopNode<CSGTransformResetSopParamsConfig> {
paramsConfig: CSGTransformResetSopParamsConfig;
static type(): SopType;
protected initializeNode(): void;
cook(inputCoreGroups: CoreGroup[]): void;
}
export {};