Color Representation

(UI 0.9.9)

Introdução

Represents RGBA colours, individual channels are accessible via public properties.

Resumo da classe

classUI\Draw\Color {
constintRed;
constintGreen;
constintBlue;
constintAlpha;
public$r;
public$g;
public$b;
public$a;
public__construct(UI\Draw\Color$color = ?)
public__construct(int$color = ?)
publicgetChannel(int$channel): float
publicsetChannel(int$channel, float$value): void
}

Propriedades

r

Provides access to the red channel

g

Provides access to the green channel

b

Provides access to the blue channel

a

Provides access to the alpha channel

Constantes pré-definidas

UI\Draw\Color::Red

Identifies the red channel

UI\Draw\Color::Green

Identifies the green channel

UI\Draw\Color::Blue

Identifies the blue channel

UI\Draw\Color::Alpha

Identifies the alpha channel

Índice

To Top