Type Alias TShapeState

TShapeState: {
    altitude: number;
    color: string;
    height: number;
    opacity: number;
    type: "Shape";
    visible: boolean;
}

Represents the state of a shape.

Type declaration

  • altitude: number

    The altitude of the shape.

  • color: string

    The color of the shape.

  • height: number

    The height of the shape. Height cannot be updated at this time

  • opacity: number

    The opacity of the shape.

  • type: "Shape"

    The type of the shape.

  • visible: boolean

    Whether Shpae is visible