Trait palette::Hue[][src]

pub trait Hue: GetHue {
    fn with_hue<H: Into<Self::Hue>>(&self, hue: H) -> Self;
fn shift_hue<H: Into<Self::Hue>>(&self, amount: H) -> Self; }
Expand description

A trait for colors where the hue can be manipulated without conversion.

Required methods

Return a new copy of self, but with a specific hue.

Return a new copy of self, but with the hue shifted by amount.

Implementors