web3d / node_modules /three /src /geometries /DodecahedronGeometry.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame contribute delete
406 Bytes
import { Geometry } from './../core/Geometry';
import { PolyhedronBufferGeometry } from './PolyhedronGeometry';
export class DodecahedronBufferGeometry extends PolyhedronBufferGeometry {
constructor(radius?: number, detail?: number);
}
export class DodecahedronGeometry extends Geometry {
constructor(radius?: number, detail?: number);
parameters: {
radius: number;
detail: number;
};
}