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