logo
pub trait AdjustHue: Sized {
    fn adjust_hue(self, delta: f32) -> Self;

    fn complement(self) -> Self { ... }
}
Expand description

Defines the color hue adjustment functionality

Required Methods

Adjust hue component of color with delta

Provided Methods

Rotate hue component with 180 degrees

Implementors