Interface SceneRepRangeParams

Projected-size range hint for a representation.

This metadata is declarative. It does not select a representation by itself; viewing-layer code can use it later when a representation set declares a projected-size selection strategy.

interface SceneRepRangeParams {
    maxPixels?: number;
    minPixels?: number;
}

Properties

maxPixels?: number

Maximum projected size, in pixels, for which this representation is a candidate.

minPixels?: number

Minimum projected size, in pixels, for which this representation is a candidate.