Trait palette::luma::LumaStandard[][src]

pub trait LumaStandard {
    type WhitePoint: WhitePoint;
    type TransferFn: TransferFn;
}

A white point and a transfer function.

Associated Types

The white point of the color space.

The transfer function for the luminance component.

Implementations on Foreign Types

impl<Wp: WhitePoint, T: TransferFn> LumaStandard for (Wp, T)
[src]

Implementors