/** * @ifc-lite/pointcloud — point cloud decoders, streaming sources, and * a worker-backed host for off-main-thread decoding. * * Phase 0: IFCx schemas (`pcd::base64`, `points::array`, `points::base64`). * Phase 1: streaming `.las` from local Files / fetched Blobs. * Phase 2: streaming `.laz` (laz-perf in the worker). */ export type { DecodedPointChunk, PointCloudBBox } from './types.js'; export { decodePcd } from './formats/pcd.js'; export { decodePointsArray, decodePointsBase64, type PointsArrayAttribute, type PointsBase64Attribute, } from './formats/ifcx-points.js'; export { decompressLZF } from './lzf.js'; export { POINTCLOUD_ATTR, POINTCLOUD_ATTR_KEYS, decodeIfcxPointAttribute, } from './from-ifcx-attributes.js'; export { parseLasHeader, decodeLasPoints, sampleMaxRgbChannel, type LasHeader, } from './formats/las.js'; export type { StreamingPointSource, PointSourceInfo, DownsampleHint, } from './streaming/types.js'; export { LasStreamingSource } from './streaming/las-source.js'; export { LazStreamingSource } from './streaming/laz-source.js'; export { PlyStreamingSource } from './streaming/ply-source.js'; export { PcdStreamingSource } from './streaming/pcd-source.js'; export { E57StreamingSource } from './streaming/e57-source.js'; export { AsciiPointsStreamingSource } from './streaming/ascii-points-source.js'; export { decodeAsciiPoints, decodeAsciiPointsFromText, probeAsciiPointsLayout, type AsciiPointsFormat, type AsciiPointsLayout, } from './formats/ascii-points.js'; export { parsePlyHeader } from './formats/ply.js'; export { parseE57FileHeader, parseE57Xml, stripPageCrc as stripE57PageCrc, decodeE57, decodeE57Scan, type E57FileHeader, type Data3DEntry, } from './formats/e57.js'; export { BlobByteSource } from './streaming/blob-source.js'; export { createDecodeWorkerSource, type CreateDecodeWorkerSourceOptions, type DecodeWorkerOptions, type DecodeWorkerFormat, } from './streaming/worker-client.js'; export { streamPointCloud, type StreamPointCloudOptions, type StreamHandle, } from './streaming/host.js'; export { LAS_CLASS_COUNT, lasClassificationName, createClassificationCounts, accumulateClassificationCounts, classificationCountEntries, type ClassificationCountEntry, } from './classification.js'; //# sourceMappingURL=index.d.ts.map