Struct palette::Hsl [] [src]

pub struct Hsl<S = Srgb, T = f32> where
    T: Float,
    S: RgbSpace
{ pub hue: RgbHue<T>, pub saturation: T, pub lightness: T, pub space: PhantomData<S>, }

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

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

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

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.

The white point and RGB primaries this color is adapted to. The default is the sRGB standard.

Methods

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

[src]

HSL for linear sRGB.

impl<S, T> Hsl<S, T> where
    T: Float,
    S: RgbSpace
[src]

[src]

Linear HSL.

Trait Implementations

impl<S: Debug, T: Debug> Debug for Hsl<S, T> where
    T: Float,
    S: RgbSpace
[src]

[src]

Formats the value using the given formatter.

impl<S: PartialEq, T: PartialEq> PartialEq for Hsl<S, T> where
    T: Float,
    S: RgbSpace
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<S, T> Copy for Hsl<S, T> where
    T: Float,
    S: RgbSpace
[src]

impl<S, T> Clone for Hsl<S, T> where
    T: Float,
    S: RgbSpace
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<S, Wp, T> FromColor<Wp, T> for Hsl<S, T> where
    T: Float,
    S: RgbSpace<WhitePoint = Wp>,
    Wp: WhitePoint
[src]

[src]

Convert from XYZ color space

[src]

Convert from RGB color space

[src]

Convert from HSL color space

[src]

Convert from HSV color space

[src]

Convert from Yxy color space

[src]

Convert from L*a*b* color space

[src]

Convert from L*C*h° color space

[src]

Convert from HWB color space

[src]

Convert from Luma

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

[src]

Check if the color's components are within the expected ranges.

[src]

Return a new color where the components has been clamped to the nearest valid values. Read more

[src]

Clamp the color's components to the nearest valid values.

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

The type of the mixing factor.

[src]

Mix the color with an other color, by factor. Read more

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

The type of the lighten/darken amount.

[src]

Lighten the color by amount.

[src]

Darken the color by amount.

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

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

[src]

Calculate a hue if possible. Read more

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

[src]

Return a new copy of self, but with a specific hue.

[src]

Return a new copy of self, but with the hue shifted by amount.

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

The type of the (de)saturation factor.

[src]

Increase the saturation by factor.

[src]

Decrease the saturation by factor.

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

[src]

Returns the "default value" for a type. Read more

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

The resulting type after applying the + operator.

[src]

Performs the + operation.

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

The resulting type after applying the + operator.

[src]

Performs the + operation.

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

The resulting type after applying the - operator.

[src]

Performs the - operation.

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

The resulting type after applying the - operator.

[src]

Performs the - operation.

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

[src]

Performs the conversion.

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

Used for specifying relative comparisons.

[src]

The default tolerance to use when testing values that are close together. Read more

[src]

The default relative tolerance for testing values that are far-apart. Read more

[src]

The default ULPs to tolerate when testing values that are far-apart. Read more

[src]

A test for equality that uses a relative comparison if the values are far apart.

[src]

A test for equality that uses units in the last place (ULP) if the values are far apart.

[src]

The inverse of ApproxEq::relative_eq.

[src]

The inverse of ApproxEq::ulps_eq.

impl<S, Wp, T> IntoColor<Wp, T> for Hsl<S, T> where
    T: Float,
    Wp: WhitePoint,
    S: RgbSpace<WhitePoint = Wp>, 
[src]

[src]

Convert into XYZ space

[src]

Convert into Yxy color space

[src]

Convert into L*a*b* color space

[src]

Convert into L*C*h° color space

[src]

Convert into RGB color space.

[src]

Convert into HSL color space

[src]

Convert into HSV color space

[src]

Convert into Luma

[src]

Convert into HWB color space

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

impl<S, T> From<Xyz<S::WhitePoint, T>> for Hsl<S, T> where
    T: Float,
    S: RgbSpace
[src]

[src]

Performs the conversion.

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

[src]

Performs the conversion.

impl<S, T> From<Yxy<S::WhitePoint, T>> for Hsl<S, T> where
    T: Float,
    S: RgbSpace
[src]

[src]

Performs the conversion.

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

[src]

Performs the conversion.

impl<S, T> From<Lab<S::WhitePoint, T>> for Hsl<S, T> where
    T: Float,
    S: RgbSpace
[src]

[src]

Performs the conversion.

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

[src]

Performs the conversion.

impl<S, T> From<Lch<S::WhitePoint, T>> for Hsl<S, T> where
    T: Float,
    S: RgbSpace
[src]

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

impl<S, T> From<Luma<S::WhitePoint, T>> for Hsl<S, T> where
    T: Float,
    S: RgbSpace
[src]

[src]

Performs the conversion.

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

[src]

Performs the conversion.

impl<S, T> From<Rgb<S, T>> for Hsl<S::Space, T> where
    T: Float,
    S: RgbStandard
[src]

[src]

Performs the conversion.

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

[src]

Performs the conversion.