[][src]Struct nannou::color::Hsl

pub struct Hsl<T = f32> where
    T: Float
{ pub hue: RgbHue<T>, pub saturation: T, pub lightness: T, }

Linear HSL color space.

The HSL color space can be seen as a cylindrical version of RGB, where the hue is the angle around the color cylinder, the saturation is the distance from the center, and the lightness is the height from the bottom. Its composition makes it especially good for operations like changing green to red, making a color more gray, or making it darker.

See HSV for a very similar color space, with brightness instead of lightness.

Fields

hue: RgbHue<T>

The hue of the color, in degrees. Decides if it's red, blue, purple, etc.

saturation: T

The colorfulness of the color. 0.0 gives gray scale colors and 1.0 will give absolutely clear colors.

lightness: T

Decides how light the color will look. 0.0 will be black, 0.5 will give a clear color, and 1.0 will give white.

Methods

impl<T> Hsl<T> where
    T: Float
[src]

pub fn new(hue: RgbHue<T>, saturation: T, lightness: T) -> Hsl<T>[src]

Linear HSL.

Trait Implementations

impl<T> IntoColor<T> for Hsl<T> where
    T: Float
[src]

fn into_hwb(self) -> Hwb<T>[src]

Convert into HWB color space

impl<T> ApproxEq for Hsl<T> where
    T: ApproxEq + Float,
    <T as ApproxEq>::Epsilon: Copy,
    <T as ApproxEq>::Epsilon: Float
[src]

type Epsilon = <T as ApproxEq>::Epsilon

Used for specifying relative comparisons.

impl<T> From<Hsl<T>> for Hwb<T> where
    T: Float
[src]

impl<T> From<Alpha<Yxy<T>, T>> for Hsl<T> where
    T: Float
[src]

impl<T> From<Alpha<Hwb<T>, T>> for Hsl<T> where
    T: Float
[src]

impl<T> From<Alpha<Hsl<T>, T>> for Hsl<T> where
    T: Float
[src]

impl<T> From<Hsl<T>> for Alpha<Hwb<T>, T> where
    T: Float
[src]

impl<T> From<Hsl<T>> for Alpha<Lch<T>, T> where
    T: Float
[src]

impl<T> From<Hsl<T>> for Lch<T> where
    T: Float
[src]

impl<T> From<Alpha<Lch<T>, T>> for Hsl<T> where
    T: Float
[src]

impl<T> From<Color<T>> for Hsl<T> where
    T: Float
[src]

impl<T> From<Luma<T>> for Hsl<T> where
    T: Float
[src]

impl<T> From<Hsl<T>> for Alpha<Hsv<T>, T> where
    T: Float
[src]

impl<T> From<Hsl<T>> for Alpha<Xyz<T>, T> where
    T: Float
[src]

impl<T> From<Alpha<Luma<T>, T>> for Hsl<T> where
    T: Float
[src]

impl<T> From<Hsl<T>> for Alpha<Rgb<T>, T> where
    T: Float
[src]

impl<T> From<Yxy<T>> for Hsl<T> where
    T: Float
[src]

impl<T> From<Rgb<T>> for Hsl<T> where
    T: Float
[src]

impl<T> From<Hsl<T>> for Lab<T> where
    T: Float
[src]

impl<T> From<Hsl<T>> for Xyz<T> where
    T: Float
[src]

impl<T> From<Hsl<T>> for Hsv<T> where
    T: Float
[src]

impl<T> From<Hsv<T>> for Hsl<T> where
    T: Float
[src]

impl<T> From<Hsl<T>> for Luma<T> where
    T: Float
[src]

impl<T> From<Alpha<Hsv<T>, T>> for Hsl<T> where
    T: Float
[src]

impl<T> From<Hsl<T>> for Rgb<T> where
    T: Float
[src]

impl<T> From<Alpha<Xyz<T>, T>> for Hsl<T> where
    T: Float
[src]

impl<T> From<Alpha<Lab<T>, T>> for Hsl<T> where
    T: Float
[src]

impl<T> From<Hsl<T>> for Alpha<Luma<T>, T> where
    T: Float
[src]

impl<T> From<Hwb<T>> for Hsl<T> where
    T: Float
[src]

impl<T> From<Lab<T>> for Hsl<T> where
    T: Float
[src]

impl<T> From<Hsl<T>> for Color<T> where
    T: Float
[src]

impl<T> From<Lch<T>> for Hsl<T> where
    T: Float
[src]

impl<T> From<Hsl<T>> for Alpha<Lab<T>, T> where
    T: Float
[src]

impl<T> From<Alpha<Rgb<T>, T>> for Hsl<T> where
    T: Float
[src]

impl<T> From<Xyz<T>> for Hsl<T> where
    T: Float
[src]

impl<T> From<Hsl<T>> for Alpha<Yxy<T>, T> where
    T: Float
[src]

impl<T> From<Hsl<T>> for Yxy<T> where
    T: Float
[src]

impl<T> Limited for Hsl<T> where
    T: Float
[src]

impl<T> Default for Hsl<T> where
    T: Float
[src]

impl<T> FromColor<T> for Hsl<T> where
    T: Float
[src]

fn from_yxy(inp: Yxy<T>) -> Self[src]

Convert from Yxy color space

fn from_lab(inp: Lab<T>) -> Self[src]

Convert from Lab* color space

fn from_lch(inp: Lch<T>) -> Self[src]

Convert from LCh° color space

fn from_hwb(inp: Hwb<T>) -> Self[src]

Convert from HWB color space

fn from_luma(inp: Luma<T>) -> Self[src]

Convert from Luma

impl<T> Shade for Hsl<T> where
    T: Float
[src]

type Scalar = T

The type of the lighten/darken amount.

fn darken(&self, amount: Self::Scalar) -> Self[src]

Darken the color by amount.

impl<T> Debug for Hsl<T> where
    T: Debug + Float
[src]

impl<T> Copy for Hsl<T> where
    T: Copy + Float
[src]

impl<T> Mix for Hsl<T> where
    T: Float
[src]

type Scalar = T

The type of the mixing factor.

impl<T> PartialEq<Hsl<T>> for Hsl<T> where
    T: PartialEq<T> + Float
[src]

impl<T> Add<Hsl<T>> for Hsl<T> where
    T: Float
[src]

type Output = Hsl<T>

The resulting type after applying the + operator.

impl<T> Add<T> for Hsl<T> where
    T: Float
[src]

type Output = Hsl<T>

The resulting type after applying the + operator.

impl<T> Hue for Hsl<T> where
    T: Float
[src]

impl<T> Sub<T> for Hsl<T> where
    T: Float
[src]

type Output = Hsl<T>

The resulting type after applying the - operator.

impl<T> Sub<Hsl<T>> for Hsl<T> where
    T: Float
[src]

type Output = Hsl<T>

The resulting type after applying the - operator.

impl<T> Saturate for Hsl<T> where
    T: Float
[src]

type Scalar = T

The type of the (de)saturation factor.

fn desaturate(&self, factor: Self::Scalar) -> Self[src]

Decrease the saturation by factor.

impl<T> GetHue for Hsl<T> where
    T: Float
[src]

type Hue = RgbHue<T>

The kind of hue unit this color space uses. Read more

impl<T> Clone for Hsl<T> where
    T: Clone + Float
[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<S> IntoRgba<S> for Hsl<S> where
    S: Float + One
[src]

Auto Trait Implementations

impl<T> Send for Hsl<T> where
    T: Send

impl<T> Sync for Hsl<T> where
    T: Sync

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Style for T where
    T: Any + Debug + PartialEq<T>, 
[src]

impl<T> Content for T[src]

impl<T> SafeBorrow<T> for T[src]

impl<T> Erased for T

impl<S> FromSample<S> for S[src]

impl<T, U> ToSample<U> for T where
    U: FromSample<T>, 
[src]

impl<S, T> Duplex<S> for T where
    T: FromSample<S> + ToSample<S>, 
[src]

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.