Vertex Viewer SDK
    Preparing search index...

    Interface Color

    A Color represents an object containing values for red, green, blue and alpha channels. Each value represents a number between 0 and 255.

    interface Color {
        a: number;
        b: number;
        g: number;
        r: number;
    }
    Index

    Properties

    a b g r

    Properties

    a: number

    The color's alpha channel value, as a number from 0 to 255.

    b: number

    The color's blue channel value, as a number from 0 to 255.

    g: number

    The color's green channel value, as a number from 0 to 255.

    r: number

    The color's red channel value, as a number from 0 to 255.