Spaces:
Running
Running
File size: 894 Bytes
2b7aae2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | import { CylinderGeometry } from './CylinderGeometry';
export class ConeGeometry extends CylinderGeometry {
/**
* @param [radius=1] — Radius of the cone base.
* @param [height=1] — Height of the cone.
* @param [radialSegments=8] — Number of segmented faces around the circumference of the cone.
* @param [heightSegments=1] — Number of rows of faces along the height of the cone.
* @param [openEnded=false] — A Boolean indicating whether the base of the cone is open or capped.
* @param [thetaStart=0]
* @param [thetaLength=Math.PI * 2]
*/
constructor(
radius?: number,
height?: number,
radialSegments?: number,
heightSegments?: number,
openEnded?: boolean,
thetaStart?: number,
thetaLength?: number
);
/**
* @default 'ConeGeometry'
*/
type: string;
static fromJSON(data: any): ConeGeometry;
}
export { ConeGeometry as ConeBufferGeometry };
|