[−][src]Trait palette::Saturate
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
Loading content...Required methods
Loading content...Provided methods
fn desaturate(&self, factor: Self::Scalar) -> Self
Decrease the saturation by factor
.
Implementors
impl<C: Saturate> Saturate for Alpha<C, C::Scalar>
[src]
impl<S, T> Saturate for Color<S, T> where
T: Float + Component,
S: RgbSpace,
[src]
T: Float + Component,
S: RgbSpace,
impl<S, T> Saturate for Hsl<S, T> where
T: Component + Float,
S: RgbSpace,
[src]
T: Component + Float,
S: RgbSpace,
impl<S, T> Saturate for Hsv<S, T> where
T: Component + Float,
S: RgbSpace,
[src]
T: Component + Float,
S: RgbSpace,
impl<Wp, T> Saturate for Lch<Wp, T> where
T: Component + Float,
Wp: WhitePoint,
[src]
T: Component + Float,
Wp: WhitePoint,