import React from "react"; import { BaseProps } from "../../../types/baseProps"; export declare const NAME = "sphereGeometry"; export interface SphereGeometryProps extends BaseProps { /** * 球体半径,默认为1 */ radius?: number; /** * 水平分段数(沿着经线分段),最小值为3,默认值为8。 */ widthSegments?: number; /** * 垂直分段数(沿着纬线分段),最小值为2,默认值为6。 */ heightSegments?: number; /** * 指定水平(经线)起始角度,默认值为0。 */ phiStart?: number; /** * 指定水平(经线)扫描角度的大小,默认值为 Math.PI * 2 */ phiLength?: number; /** * 指定垂直(纬线)起始角度,默认值为0。 */ thetaStart?: number; /** * 指定垂直(纬线)扫描角度大小,默认值为 Math.PI。 */ thetaLength?: number; } /** * 一个用于生成球体的类。 */ export declare const SphereGeometry: React.ComponentType;