PLYExporter.d.ts 171 B

1234567
  1. import { Object3D } from '../../../src/Three';
  2. export class PLYExporter {
  3. constructor();
  4. parse(object: Object3D, onDone: (res: any) => void, options: object): null;
  5. }