UNPKG

three

Version:

JavaScript 3D library

19 lines (13 loc) 349 B
import { PolyhedronGeometry } from './PolyhedronGeometry'; export class OctahedronGeometry extends PolyhedronGeometry { /** * @param [radius=1] * @param [detail=0] */ constructor( radius?: number, detail?: number ); /** * @default 'OctahedronGeometry' */ type: string; } export { OctahedronGeometry as OctahedronBufferGeometry };