Interface SceneRepSetParams

Parameters for a representation set in a SceneModel.

A representation set groups alternative representations of the same logical content. The representation IDs are model/application defined; names such as "detailed", "shell" or "impostor" have no built-in meaning.

interface SceneRepSetParams {
    defaultRepId: string;
    id: string;
    reps: SceneRepParams[];
    selection?: SceneRepSetSelectionParams;
}

Properties

defaultRepId: string

ID of the representation to use when no selection policy applies.

id: string

Representation set ID, unique within its SceneModel.

Alternative representations in this representation set.

Optional declarative selection metadata.