/** * Updates the normals of the geometry * * @remarks * Just like the Point and Color SOPs, this can take expressions * */ import { TypedSopNode } from './_Base'; import { CoreGroup } from '../../../core/geometry/Group'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; declare class NormalsSopParamsConfig extends NodeParamsConfig { /** @param toggle on if normals can be updated via expressions */ edit: import("../utils/params/ParamsConfig").ParamTemplate; /** @param toggle on to update the x component */ updateX: import("../utils/params/ParamsConfig").ParamTemplate; /** @param expression or value for the x component */ x: import("../utils/params/ParamsConfig").ParamTemplate; /** @param toggle on to update the y component */ updateY: import("../utils/params/ParamsConfig").ParamTemplate; /** @param expression or value for the y component */ y: import("../utils/params/ParamsConfig").ParamTemplate; /** @param toggle on to update the z component */ updateZ: import("../utils/params/ParamsConfig").ParamTemplate; /** @param expression or value for the z component */ z: import("../utils/params/ParamsConfig").ParamTemplate; /** @param recompute the normals based on the position */ recompute: import("../utils/params/ParamsConfig").ParamTemplate; /** @param invert normals */ invert: import("../utils/params/ParamsConfig").ParamTemplate; } export declare class NormalsSopNode extends TypedSopNode { params_config: NormalsSopParamsConfig; static type(): string; static displayedInputNames(): string[]; initializeNode(): void; cook(input_contents: CoreGroup[]): Promise; private _eval_expressions_for_core_group; private _eval_expressions_for_core_object; private _invert_normals; } export {};