Spaces:
Running
Running
File size: 406 Bytes
6cd9596 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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;
};
}
|