import type { Device } from '@antv/g-device-api'; import { ProceduralGeometry } from './ProceduralGeometry'; export interface CylinderGeometryProps { /** * The radius of the tube forming the body of the cylinder */ radius: number; /** * The length of the body of the cylinder */ height: number; /** * The number of divisions along the length of the cylinder */ heightSegments: number; /** * The number of divisions around the tubular body of the cylinder */ capSegments: number; } export declare class CylinderGeometry extends ProceduralGeometry { constructor(device: Device, props?: Partial); get radius(): number; set radius(v: number); get height(): number; set height(v: number); get heightSegments(): number; set heightSegments(v: number); get capSegments(): number; set capSegments(v: number); createTopology(): { indices: number[]; positions: number[]; normals: number[]; uvs: number[]; uv1s: number[]; }; } //# sourceMappingURL=CylinderGeometry.d.ts.map