pub trait ToXyz {
    type WhitePoint: WhitePoint;

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

Required Associated Types

Required Methods

Implementors