/** * Jitter the input points * * @remarks * This can be useful to add amounts of disturbance in the geometry. Either to debug it, or to remove a bit of its smoothness. */ import { CoreGroup } from '../../../core/geometry/Group'; import { TypedSopNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; declare class JitterSopParamsConfig extends NodeParamsConfig { /** @param amount of jitter */ amount: import("../utils/params/ParamsConfig").ParamTemplate; /** @param mult of each axis */ mult: import("../utils/params/ParamsConfig").ParamTemplate; /** @param seed used to set the direction each point is moved to */ seed: import("../utils/params/ParamsConfig").ParamTemplate; } export declare class JitterSopNode extends TypedSopNode { params_config: JitterSopParamsConfig; static type(): string; static displayedInputNames(): string[]; initializeNode(): void; private _operation; cook(input_contents: CoreGroup[]): void; } export {};