Trait palette::chromatic_adaptation::AdaptInto[][src]

pub trait AdaptInto<D, Swp, Dwp, T>: Sized where
    T: FloatComponent,
    Swp: WhitePoint,
    Dwp: WhitePoint
{ fn adapt_into_using<M: TransformMatrix<Swp, Dwp, T>>(self, method: M) -> D; fn adapt_into(self) -> D { ... } }

Trait to convert color with one reference white point into another

Converts a color with the source white point (Swp) into the destination white point (Dwp). Uses the bradford method for conversion by default.

Required methods

fn adapt_into_using<M: TransformMatrix<Swp, Dwp, T>>(self, method: M) -> D[src]

Convert the source color to the destination color using the specified method

Loading content...

Provided methods

fn adapt_into(self) -> D[src]

Convert the source color to the destination color using the bradford method by default

Loading content...

Implementors

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    T: FloatComponent,
    Swp: WhitePoint,
    Dwp: WhitePoint,
    D: AdaptFrom<S, Swp, Dwp, T>, 
[src]

Loading content...