BimCT SDK / WebGL2 Viewer
    Preparing search index...

    Interface RGBA

    RGBA color representation. Each component (r, g, b) is a number between 0 and 1, and 'a' is the alpha channel (opacity) also between 0 and 1

    interface RGBA {
        r: number;
        g: number;
        b: number;
        a: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    r g b a

    Properties

    r: number
    g: number
    b: number
    a: number