Taos API Reference
    Preparing search index...

    Interface SplatTileNode

    A node in a splat tileset tree.

    interface SplatTileNode {
        geometricError: number;
        center: [number, number, number];
        radius: number;
        load: () => Promise<SplatData>;
        children?: SplatTileNode[];
    }
    Index

    Properties

    geometricError: number

    Geometric error (meters): refine into children when the on-screen error exceeds the budget.

    center: [number, number, number]

    Bounding-sphere center in WORLD space.

    radius: number

    Bounding-sphere radius (meters).

    load: () => Promise<SplatData>

    Lazily load this tile's WORLD-placed splats. Called at most once; the result is cached.

    children?: SplatTileNode[]

    Finer child tiles, or undefined/empty for a leaf.