PLYExporter.d.ts 317 B

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