UNPKG

@loaders.gl/pcd

Version:

Framework-independent loader for the PCD format

17 lines 384 B
// loaders.gl // SPDX-License-Identifier: MIT // Copyright (c) vis.gl contributors /** * PCD (Point Cloud Data) file format */ export const PCDFormat = { name: 'PCD (Point Cloud Data)', id: 'pcd', module: 'pcd', extensions: ['pcd'], mimeTypes: ['text/plain'], category: 'pointcloud', text: true, binary: true }; //# sourceMappingURL=pcd-format.js.map