Trait nannou::color::Saturate[][src]

pub trait Saturate {
    type Scalar: Float;
    fn saturate(&self, factor: Self::Scalar) -> Self;

    fn desaturate(&self, factor: Self::Scalar) -> Self { ... }
}
Expand description

A trait for colors where the saturation (or chroma) can be manipulated without conversion.

use palette::{Hsv, Saturate};

let a = Hsv::new(0.0, 0.25, 1.0);
let b = Hsv::new(0.0, 1.0, 1.0);

assert_eq!(a.saturate(1.0), b.desaturate(0.5));

Associated Types

The type of the (de)saturation factor.

Required methods

Increase the saturation by factor.

Provided methods

Decrease the saturation by factor.

Implementors