starry / backend /libs /three /geometries /IcosahedronGeometry.d.ts
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
import { PolyhedronGeometry } from './PolyhedronGeometry';
export class IcosahedronGeometry extends PolyhedronGeometry {
/**
* @param [radius=1]
* @param [detail=0]
*/
constructor(radius?: number, detail?: number);
/**
* @default 'IcosahedronGeometry'
*/
type: string;
static fromJSON(data: any): IcosahedronGeometry;
}
export { IcosahedronGeometry as IcosahedronBufferGeometry };