@loaders.gl/ply
Version:
Framework-independent loader for the PLY format
16 lines • 510 B
TypeScript
/**
* PLY - Polygon File Format (aka Stanford Triangle Format)
* @see http://paulbourke.net/dataformats/ply/,
* @see https://en.wikipedia.org/wiki/PLY_(file_format)
*/
export declare const PLYFormat: {
readonly name: "PLY";
readonly id: "ply";
readonly module: "ply";
readonly extensions: ["ply"];
readonly mimeTypes: ["text/plain", "application/octet-stream"];
readonly text: true;
readonly binary: true;
readonly tests: ["ply"];
};
//# sourceMappingURL=ply-format.d.ts.map