SDK JS
    Preparing search index...

    Interface WorkerLepccI3sPointCloudDecoderOptions

    Construction options for WorkerLepccI3sPointCloudDecoder.

    interface WorkerLepccI3sPointCloudDecoderOptions {
        onDegraded?: (error: BitruviusError) => void;
        poolSize?: number;
        wasmInit?: WasmHostInit;
    }
    Index

    Properties

    onDegraded?: (error: BitruviusError) => void

    Called once if the worker pool cannot be spawned and decoding degrades to the main thread (blocked cross-origin worker, or a CSP without worker-src blob:). The I3S point-cloud layer wires this to its onError.

    poolSize?: number

    Worker pool size (default: ~navigator.hardwareConcurrency − 1, capped at 4).

    wasmInit?: WasmHostInit

    Optional wasm source override forwarded to each worker; see WasmHostInit. Set it when the package-relative .wasm is not reachable from a worker (e.g. a cross-origin CDN bundle).