STLExporter.d.ts 221 B

12345678910111213
  1. import { Object3D } from '../../../src/Three';
  2. export interface STLExporterOptions {
  3. binary?: boolean;
  4. }
  5. export class STLExporter {
  6. constructor();
  7. parse( scene: Object3D, options?: STLExporterOptions ): string;
  8. }