download
raw
718 Bytes
import { Object3D } from 'three';
/**
* https://github.com/gkjohnson/ply-exporter-js
*
* Usage:
* const exporter = new PLYExporter();
*
* // second argument is a list of options
* exporter.parse(mesh, data => console.log(data), { binary: true, excludeAttributes: [ 'color' ], littleEndian: true });
*
* Format Definition:
* http://paulbourke.net/dataformats/ply/
*/
export interface PLYExporterOptions {
binary?: boolean;
excludeAttributes?: string[];
littleEndian?: boolean;
}
declare class PLYExporter {
parse(object: Object3D, onDone: ((res: string) => void) | undefined, options: PLYExporterOptions): string | ArrayBuffer | null;
private traverseMeshes;
}
export { PLYExporter };

Xet Storage Details

Size:
718 Bytes
·
Xet hash:
3aa8ead2c6e15deef388a9e1d77cae709643d946e8089743891c77de4333a925

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.