The Color class is used to create color instances.

Color类用于创建颜色实例。

实现

  • IClone

构造函数

  • 参数

    • r: number = 1

      Red component (0-1).

    • g: number = 1

      Green component (0-1).

    • b: number = 1

      Blue component (0-1).

    • a: number = 1

      Alpha component (0-1).

    返回 Color

    Constructor method Color.

    构造函数,初始化颜色实例。

属性

a: number

Alpha component

透明度分量

b: number

Blue component

蓝色分量

g: number

Green component

绿色分量

r: number

Red component

红色分量

BLACK: Readonly<Color> = ...

Black color

黑色

BLUE: Readonly<Color> = ...

Blue color

蓝色

CLEAR: Readonly<Color> = ...

Fully transparent

全透明

CYAN: Readonly<Color> = ...

Cyan color

蓝绿色

GRAY: Readonly<Color> = ...

Gray color

灰色

GREEN: Readonly<Color> = ...

Green color

绿色

MAGENTA: Readonly<Color> = ...

Magenta color

品红色

RED: Readonly<Color> = ...

Red color

红色

WHITE: Readonly<Color> = ...

White color

白色

YELLOW: Readonly<Color> = ...

Yellow color

黄色

方法

  • 参数

    • destObject: Color

      The target object to clone to.

    返回 void

    Clone the color to another object.

    克隆颜色到目标对象。

  • 参数

    • c: Color

      The color to compare with.

    返回 boolean

    True if the colors are equal, false otherwise.

    Check if two colors are equal.

    判断两个颜色是否相等。

  • 参数

    • array: any[]

      The source array.

    • offset: number = 0

      The offset of the array.

    返回 void

    Convert from Array to color.

    从Array数组拷贝值。

  • 参数

    • r: number

      Red component.

    • g: number

      Green component.

    • b: number

      Blue component.

    • a: number

      Alpha component.

    返回 Color

    Set the color components (0-1).

    设置颜色分量(0-1)。

  • 参数

    • arr: { [n: number]: number }

      The target array.

    • offset: number = 0

      The offset in the array. Default is 0.

    返回 void

    Writes the color rgb values to a array.

    将颜色rgb数值写入数组。

    arr 目标数组。

    offset 数组偏移。默认值为 0。

  • 参数

    • value: number

      The value in gamma space.

    返回 number

    The value in linear space.

    Convert gamma space value to linear space.

    将 Gamma 空间值转换为线性空间值。

  • 参数

    • color: number

      The color value.

    返回 string

    A string representation of the color value.

    Converts an unsigned integer color value to a string representation.

    将 uint 类型的颜色值转换为字符串型颜色值。

  • 参数

    • value: number

      The value in linear space.

    返回 number

    The value in gamma space.

    Convert linear space value to gamma space.

    将线性空间值转换为 Gamma 空间值。

  • 参数

    • value: string

      The string color value.

    返回 number

    The color value as a number.

    Converts a string color value to a number color.

    将字符串型颜色值转换为数字型颜色值。