File size: 427 Bytes
6cd9596
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { Shape } from './../extras/core/Shape';
import { UVGenerator } from './ExtrudeGeometry';
import {
  PolyhedronGeometry,
  PolyhedronBufferGeometry,
} from './PolyhedronGeometry';

export class IcosahedronBufferGeometry extends PolyhedronBufferGeometry {
  constructor(radius?: number, detail?: number);
}

export class IcosahedronGeometry extends PolyhedronGeometry {
  constructor(radius?: number, detail?: number);
}