UNPKG

@loaders.gl/ply

Version:

Framework-independent loader for the PLY format

41 lines (36 loc) 1.2 kB
// PLY Loader import type {Loader, LoaderOptions} from '@loaders.gl/loader-utils'; import {PLYMesh} from './lib/ply-types'; import type {ParsePLYOptions} from './lib/parse-ply'; // __VERSION__ is injected by babel-plugin-version-inline // @ts-ignore TS2304: Cannot find name '__VERSION__'. const VERSION = typeof __VERSION__ !== 'undefined' ? __VERSION__ : 'latest'; export type PLYLoaderOptions = LoaderOptions & { ply?: ParsePLYOptions & { /** Override the URL to the worker bundle (by default loads from unpkg.com) */ workerUrl?: string; }; }; /** * Worker loader for PLY - Polygon File Format (aka Stanford Triangle Format)' * links: ['http://paulbourke.net/dataformats/ply/', * 'https://en.wikipedia.org/wiki/PLY_(file_format)'] */ export const PLYLoader = { dataType: null as unknown as PLYMesh, batchType: null as never, name: 'PLY', id: 'ply', module: 'ply', // shapes: ['mesh', 'gltf', 'columnar-table'], version: VERSION, worker: true, extensions: ['ply'], mimeTypes: ['text/plain', 'application/octet-stream'], text: true, binary: true, tests: ['ply'], options: { ply: {} } } as const satisfies Loader<PLYMesh, never, LoaderOptions>;