Dutch PHP Conference 2025 - Call For Papers

Color Representation

(UI 0.9.9)

Вступ

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

Короткий огляд класу

class UI\Draw\Color {
/* Константи */
const int Red;
const int Green;
const int Blue;
const int Alpha;
/* Властивості */
public $r;
public $g;
public $b;
public $a;
/* Constructor */
public __construct(UI\Draw\Color $color = ?)
public __construct(int $color = ?)
/* Методи */
public getChannel(int $channel): float
public setChannel(int $channel, float $value): void
}

Властивості

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

Попередньо визначені константи

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

Зміст

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top