/** * Creates a torus. * * */ import { TypedSopNode } from './_Base'; import { CoreGroup } from '../../../core/geometry/Group'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; declare class TorusSopParamsConfig extends NodeParamsConfig { /** @param large radius */ radius: import("../utils/params/ParamsConfig").ParamTemplate; /** @param radius of the tube */ radiusTube: import("../utils/params/ParamsConfig").ParamTemplate; /** @param number of segments along the length of the torus */ segmentsRadial: import("../utils/params/ParamsConfig").ParamTemplate; /** @param number of segments along the tube */ segmentsTube: import("../utils/params/ParamsConfig").ParamTemplate; /** @param axis perpendicular to the torus */ direction: import("../utils/params/ParamsConfig").ParamTemplate; /** @param center of the torus */ center: import("../utils/params/ParamsConfig").ParamTemplate; } export declare class TorusSopNode extends TypedSopNode { params_config: TorusSopParamsConfig; static type(): string; private _operation; cook(input_contents: CoreGroup[]): void; } export {};