/** * Simple math operation of a numeric attribute * * @remarks * This allows you to quickly add and multiply a numeric attribute of the input geometry. * */ import { TypedSopNode } from './_Base'; import { CoreGroup } from '../../../core/geometry/Group'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; declare class AttribAddMultSopParamsConfig extends NodeParamsConfig { /** @param attribute name */ name: import("../utils/params/ParamsConfig").ParamTemplate; /** @param value to add before the multiplication */ preAdd: import("../utils/params/ParamsConfig").ParamTemplate; /** @param value to multiply */ mult: import("../utils/params/ParamsConfig").ParamTemplate; /** @param value to add after the multiplication */ postAdd: import("../utils/params/ParamsConfig").ParamTemplate; } export declare class AttribAddMultSopNode extends TypedSopNode { params_config: AttribAddMultSopParamsConfig; static type(): string; initializeNode(): void; private _operation; cook(input_contents: CoreGroup[]): void; } export {};