UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

17 lines (16 loc) 448 B
import { BufferGeometry } from 'three'; interface SphereBuilderParams { radius: number; widthSegments: number; heightSegments: number; phiStart?: number; phiLength?: number; thetaStart?: number; thetaLength?: number; asLines?: boolean; open?: boolean; } export declare class SphereBuilder { static create(parameters: SphereBuilderParams): BufferGeometry<import("three").NormalBufferAttributes>; } export {};