web3d / node_modules /three /src /geometries /IcosahedronGeometry.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame contribute delete
427 Bytes
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);
}