STLExporter.d.ts 220 B

1234567891011
  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. }