pub type Cam16UcsJaba<T> = Alpha<Cam16UcsJab<T>, T>;Expand description
Cartesian CAM16-UCS with an alpha component.
See the Cam16UcsJaba implementation in
Alpha.
Aliased Type§
#[repr(C)]pub struct Cam16UcsJaba<T> {
pub color: Cam16UcsJab<T>,
pub alpha: T,
}Fields§
§color: Cam16UcsJab<T>The color.
alpha: TThe transparency component. 0.0 (or 0u8) is fully transparent and 1.0 (or 255u8) is fully opaque.