PHP 8.4.0 RC4 available for testing

Représentation de couleur

(UI 0.9.9)

Introduction

Représente une couleur RGBA, les canaux individuels sont accessibles via des propriétés publiques.

Synopsis de la classe

class UI\Draw\Color {
/* Constantes */
const int Red;
const int Green;
const int Blue;
const int Alpha;
/* Propriétés */
public $r;
public $g;
public $b;
public $a;
/* Constructor */
public __construct(UI\Draw\Color $color = ?)
public __construct(int $color = ?)
/* Méthodes */
public getChannel(int $channel): float
public setChannel(int $channel, float $value): void
}

Propriétés

r

Apporte l'accès au canal rouge

g

Apporte l'accès au canal vert

b

Apporte l'accès au canal bleu

a

Apporte l'accès au canal alpha

Constantes pré-définies

UI\Draw\Color::Red

Identifie le canal rouge

UI\Draw\Color::Green

Identifie le canal vert

UI\Draw\Color::Blue

Identifie le canal bleu

UI\Draw\Color::Alpha

Identifie le canal alpha

Sommaire

add a note

User Contributed Notes

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