Trait color::ToYxy

source ·
pub trait ToYxy {
    type WhitePoint: WhitePoint;

    // Required method
    fn to_yxy<T: Channel + Float>(&self) -> Yxy<T, Self::WhitePoint>;
}

Required Associated Types§

Required Methods§

source

fn to_yxy<T: Channel + Float>(&self) -> Yxy<T, Self::WhitePoint>

Implementors§

source§

impl<T: Channel + Float, Wp: WhitePoint> ToYxy for Xyz<T, Wp>

§

type WhitePoint = Wp