Trait color::ToXyz[][src]

pub trait ToXyz {
    type WhitePoint: WhitePoint;
    fn to_xyz<T: Channel + Float + Debug>(&self) -> Xyz<T, Self::WhitePoint>;
}

Associated Types

type WhitePoint: WhitePoint[src]

Loading content...

Required methods

fn to_xyz<T: Channel + Float + Debug>(&self) -> Xyz<T, Self::WhitePoint>[src]

Loading content...

Implementors

impl<T: Channel + Float + NumCast, Wp: WhitePoint> ToXyz for Lab<T, Wp>[src]

type WhitePoint = Wp

impl<T: Channel + Float, Wp: WhitePoint> ToXyz for Yxy<T, Wp>[src]

type WhitePoint = Wp

impl<T: Channel, S: MatrixColorSpace + TransferFunction> ToXyz for Rgb<T, S>[src]

type WhitePoint = D65

Loading content...