pub trait Primaries: 'static {
    fn red<Wp: WhitePoint, T: FloatComponent>() -> Yxy<Wp, T>;
    fn green<Wp: WhitePoint, T: FloatComponent>() -> Yxy<Wp, T>;
    fn blue<Wp: WhitePoint, T: FloatComponent>() -> Yxy<Wp, T>;
}
Expand description

Represents the red, green and blue primaries of an RGB space.

Required Methods

Primary red.

Primary green.

Primary blue.

Implementors