Type Definition graphics::types::Color

source ·
pub type Color = [ColorComponent; 4];
Expand description

[red, green, blue, alpha]

All values are between 0.0 and 1.0. For example, black is [0.0, 0.0, 0.0, 1.0] and white is [1.0, 1.0, 1.0, 1.0].

Trait Implementations

Multiplies with red, green, blue and alpha values.
Rotates hue by radians.
Mixes the current color with white. Read more
Mixes the current color with black. Read more
Rotates hue by degrees.