颜色表示

(UI 0.9.9)

简介

表示 RGBA 颜色,可以通过公共属性访问各个通道。

类概要

class UI\Draw\Color {
/* 常量 */
const int Red;
const int Green;
const int Blue;
const int Alpha;
/* 属性 */
public $r;
public $g;
public $b;
public $a;
/* 构造函数 */
public __construct(UI\Draw\Color $color = ?)
public __construct(int $color = ?)
/* 方法 */
public getChannel(int $channel): float
public setChannel(int $channel, float $value): void
}

属性

r

提供对红色通道的访问

g

提供对绿色通道的访问

b

提供对蓝色通道的访问

a

提供对 alpha 通道的访问

预定义常量

UI\Draw\Color::Red

标识红色通道

UI\Draw\Color::Green

标识绿色通道

UI\Draw\Color::Blue

标识蓝色通道

UI\Draw\Color::Alpha

标识 alpha 通道

目录

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top