Type Alias palette::cam16::Cam16Qmha

source ·
pub type Cam16Qmha<T> = Alpha<Cam16Qmh<T>, T>;
Expand description

Partial CIE CAM16 with brightness, colorfulness, and an alpha component.

See the Cam16Qmha implementation in Alpha.

Aliased Type§

struct Cam16Qmha<T> {
    pub color: Cam16Qmh<T>,
    pub alpha: T,
}

Fields§

§color: Cam16Qmh<T>

The color.

§alpha: T

The transparency component. 0.0 (or 0u8) is fully transparent and 1.0 (or 255u8) is fully opaque.