logo
pub trait SetHue {
    fn set_hue(&mut self, hue: f32) -> Self;
}
Expand description

Defines setter for the color hue component

Required Methods

Set the hue component

Implementors