Interface LASLoaderOptions

Options for LASLoader.load.

For detailed usage, refer to @xeokit/sdk/las.

interface LASLoaderOptions {
    center?: boolean;
    colorDepth?: string | number;
    coordinateSystem?: CoordinateSystemParams;
    fp64?: boolean;
    skip?: number;
    transform?: FloatArrayParam;
}

Hierarchy

  • ModelLoadOptions
    • LASLoaderOptions

Properties

center?: boolean
colorDepth?: string | number
coordinateSystem?: CoordinateSystemParams

Describes the coordinate system of the model to load.

When provided, this enables the loader to automatically transform the model from its local oordinate system to the Scene's global coordinate system.

fp64?: boolean
skip?: number
transform?: FloatArrayParam