/** * Creates an Isocahedron * * @remarks * This is similar to a sphere, but with hexagonal patterns */ import { TypedSopNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; declare class IcosahedronSopParamsConfig extends NodeParamsConfig { /** @param radius of the icosahedron */ radius: import("../utils/params/ParamsConfig").ParamTemplate; /** @param resolution of the icosahedron */ detail: import("../utils/params/ParamsConfig").ParamTemplate; /** @param do not create polygons, only points. */ pointsOnly: import("../utils/params/ParamsConfig").ParamTemplate; /** @param center of the icosahedron */ center: import("../utils/params/ParamsConfig").ParamTemplate; } export declare class IcosahedronSopNode extends TypedSopNode { params_config: IcosahedronSopParamsConfig; static type(): string; private _operation; cook(): void; } export {};