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

    fn desaturate(self, delta: f32) -> Self { ... }
}
Expand description

Defines the color saturation functionality

Required Methods

Saturate the color with delta

Provided Methods

Desaturate the color with delta

Implementors