Represents statistics for an RTC tile.

interface TileStats {
    id: string;
    numMeshes: number;
    rtcCenter: [number, number, number];
    size: number;
    tileIndex: number;
}

Properties

id: string

Unique identifier for the tile.

numMeshes: number

The number of meshes contained within this tile.

rtcCenter: [number, number, number]

The 3D center of the tile in world coordinates [x, y, z].

size: number

The size of the tile in world units.

tileIndex: number

The index of the tile within the renderer.