import type { ModelBuilder } from '../model/ModelBuilder'; /** * Options for the {@link buildCone} function * * @public */ export interface BuildConeOptions { /** * The height of the cone * @remarks * defaults to `1.0` */ height?: number; /** * The bottom radius of the cone * @remarks * defaults to `0.5` */ lowerRadius?: number; /** * The top radius of the cone * @remarks * defaults to `0.0` */ upperRadius?: number; /** * The tesselation factor */ tesselation?: number; } /** * Builds a cone shape into the {@link ModelBuilder} * * @public */ export declare function buildCone(builder: ModelBuilder, options?: BuildConeOptions): void; //# sourceMappingURL=buildCone.d.ts.map