import { Geometry } from "../Geometry.ts"; interface LathePoint { x: number; y: number; } /** Lathe geometry - revolves an array of Vector2 points around the Y axis. */ export declare class LatheGeometry extends Geometry { type: string; parameters: Record; constructor(points: LathePoint[], segments?: number, phiStart?: number, phiLength?: number); } export {}; //# sourceMappingURL=LatheGeometry.d.ts.map