Struct palette::Hwb [] [src]

pub struct Hwb<S = Srgb, T = f32> where
    T: Float,
    S: RgbSpace
{ pub hue: RgbHue<T>, pub whiteness: T, pub blackness: T, pub space: PhantomData<S>, }

Linear HWB color space.

HWB is a cylindrical version of RGB and it's very closely related to HSV. It describes colors with a starting hue, then a degree of whiteness and blackness to mix into that base hue.

It is very intuitive for humans to use and many color-pickers are based on the HWB color system

Fields

The hue of the color, in degrees. Decides if it's red, blue, purple, etc. Same as the hue for HSL and HSV.

The whiteness of the color. It specifies the amount white to mix into the hue. It varies from 0 to 1, with 1 being always full white and 0 always being the color shade (a mixture of a pure hue with black) chosen with the other two controls.

The blackness of the color. It specifies the amount black to mix into the hue. It varies from 0 to 1, with 1 being always full black and 0 always being the color tint (a mixture of a pure hue with white) chosen with the other two

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

Methods

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

[src]

HWB for linear sRGB.

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

[src]

Linear HWB.

Trait Implementations

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

[src]

Formats the value using the given formatter.

impl<S: PartialEq, T: PartialEq> PartialEq for Hwb<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 Hwb<S, T> where
    T: Float,
    S: RgbSpace
[src]

impl<S, T> Clone for Hwb<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 Hwb<S, T> where
    T: Float,
    S: RgbSpace<WhitePoint = Wp>,
    Wp: WhitePoint
[src]

[src]

Convert from XYZ color space

[src]

Convert from HSV color space

[src]

Convert from HWB 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 RGB color space

[src]

Convert from HSL color space

[src]

Convert from Luma

impl<S, T> Limited for Hwb<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 Hwb<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 Hwb<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 Hwb<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 Hwb<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> Default for Hwb<S, T> where
    T: Float,
    S: RgbSpace
[src]

[src]

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

impl<S, T> Add<Hwb<S, T>> for Hwb<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 Hwb<S, T> where
    T: Float,
    S: RgbSpace
[src]

The resulting type after applying the + operator.

[src]

Performs the + operation.

impl<S, T> Sub<Hwb<S, T>> for Hwb<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 Hwb<S, T> where
    T: Float,
    S: RgbSpace
[src]

The resulting type after applying the - operator.

[src]

Performs the - operation.

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

[src]

Performs the conversion.

impl<S, T> ApproxEq for Hwb<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 Hwb<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 Hwb<S, T> where
    T: Float,
    S: RgbSpace
[src]

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.