PLYExporter.d.ts 292 B

1234567891011121314
  1. import { Object3D } from '../../../src/Three';
  2. export interface PLYExporterOptions {
  3. binary?: boolean;
  4. excludeAttributes?: string[];
  5. }
  6. export class PLYExporter {
  7. constructor();
  8. parse( object: Object3D, onDone: ( res: string ) => void, options: PLYExporterOptions ): string | null;
  9. }