TetrahedronGeometry.d.ts 269 B

12345678910111213141516
  1. import { Geometry } from './../core/Geometry';
  2. export class TetrahedronGeometry extends Geometry {
  3. /**
  4. * @param [radius=1]
  5. * @param [detail=0]
  6. */
  7. constructor( radius?: number, detail?: number );
  8. /**
  9. * @default 'TetrahedronGeometry'
  10. */
  11. type: string;
  12. }