Struct palette::Hwb[][src]

#[repr(C)]
pub struct Hwb<S = Srgb, T = f32> where
    T: Component + 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: Component + Float
[src]

HWB for linear sRGB.

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

Linear HWB.

Convert to a (hue, whiteness, blackness) tuple.

Convert from a (hue, whiteness, blackness) tuple.

Trait Implementations

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

impl<S, Sp, T> From<Hwb<Sp, T>> for Hsv<S, T> where
    T: Component + Float,
    S: RgbSpace,
    Sp: RgbSpace<WhitePoint = S::WhitePoint>, 
[src]

Performs the conversion.

impl<S, T> FromColor<S::WhitePoint, T> for Hwb<S, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float
[src]

Convert from XYZ color space

Convert from HSV color space

Convert from HWB color space

Convert from Yxy color space

Convert from Lab* color space

Convert from LCh° color space

Convert from RGB color space

Convert from HSL color space

Convert from Luma

impl<S, T, _S> From<Rgb<_S, T>> for Hwb<S, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float,
    _S: RgbStandard<Space = S>, 
[src]

Performs the conversion.

impl<S, T, _S> From<Alpha<Rgb<_S, T>, T>> for Hwb<S, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float,
    _S: RgbStandard<Space = S>, 
[src]

Performs the conversion.

impl<S, T, _S> From<Luma<_S, T>> for Hwb<S, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float,
    _S: LumaStandard<WhitePoint = S::WhitePoint>, 
[src]

Performs the conversion.

impl<S, T, _S> From<Alpha<Luma<_S, T>, T>> for Hwb<S, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float,
    _S: LumaStandard<WhitePoint = S::WhitePoint>, 
[src]

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

impl<S, T> Pixel<T> for Hwb<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

CHANNELS: usize = 3usize

The number of color channels.

Cast as a reference to raw color components.

Cast as a mutable reference to raw color components.

Convert from raw color components.

Cast from a reference to raw color components.

Cast from a mutable reference to raw color components.

Cast a slice of raw color components to a slice of colors. Read more

Cast a mutable slice of raw color components to a mutable slice of colors. Read more

Cast a slice of colors to a slice of raw color components. Read more

Cast a mutable slice of colors to a mutable slice of raw color components. Read more

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

Formats the value using the given formatter. Read more

impl<S: PartialEq, T: PartialEq> PartialEq for Hwb<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

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

This method tests for !=.

impl<S, T> Copy for Hwb<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

impl<S, T> Clone for Hwb<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Performs the conversion.

impl<S, T, Sp> From<Hsv<Sp, T>> for Hwb<S, T> where
    T: Component + Float,
    S: RgbSpace,
    Sp: RgbSpace<WhitePoint = S::WhitePoint>, 
[src]

Performs the conversion.

impl<S: RgbSpace, T: Component + Float, H: Into<RgbHue<T>>> From<(H, T, T)> for Hwb<S, T>
[src]

Performs the conversion.

impl<S: RgbSpace, T: Component + Float> Into<(RgbHue<T>, T, T)> for Hwb<S, T>
[src]

Performs the conversion.

impl<S, T> Limited for Hwb<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

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

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

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

impl<S, T> Mix for Hwb<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

The type of the mixing factor.

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

impl<S, T> Shade for Hwb<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

The type of the lighten/darken amount.

Lighten the color by amount.

Darken the color by amount.

impl<S, T> GetHue for Hwb<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

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

Calculate a hue if possible. Read more

impl<S, T> Hue for Hwb<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

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

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

impl<S, T> Default for Hwb<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

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

impl<S, T> Add<Hwb<S, T>> for Hwb<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<S, T> Add<T> for Hwb<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<S, T> Sub<Hwb<S, T>> for Hwb<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<S, T> Sub<T> for Hwb<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<S, T, P: ?Sized> AsRef<P> for Hwb<S, T> where
    T: Component + Float,
    S: RgbSpace,
    P: RawPixel<T>, 
[src]

Performs the conversion.

impl<S, T, P: ?Sized> AsMut<P> for Hwb<S, T> where
    T: Component + Float,
    S: RgbSpace,
    P: RawPixel<T>, 
[src]

Performs the conversion.

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

Used for specifying relative comparisons.

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

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

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

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

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

The inverse of ApproxEq::relative_eq.

The inverse of ApproxEq::ulps_eq.

impl<Wp, T, _S> From<Hwb<_S, T>> for Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint,
    T: Component + Float,
    _S: RgbSpace<WhitePoint = Wp>, 
[src]

Performs the conversion.

impl<Wp, T, _S> From<Hwb<_S, T>> for Alpha<Lab<Wp, T>, T> where
    T: Component + Float,
    Wp: WhitePoint,
    T: Component + Float,
    _S: RgbSpace<WhitePoint = Wp>, 
[src]

Performs the conversion.

impl<Wp, T, _S> From<Hwb<_S, T>> for Lch<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint,
    T: Component + Float,
    _S: RgbSpace<WhitePoint = Wp>, 
[src]

Performs the conversion.

impl<Wp, T, _S> From<Hwb<_S, T>> for Alpha<Lch<Wp, T>, T> where
    T: Component + Float,
    Wp: WhitePoint,
    T: Component + Float,
    _S: RgbSpace<WhitePoint = Wp>, 
[src]

Performs the conversion.

impl<S, T, _S> From<Hwb<_S, T>> for Luma<S, T> where
    T: Component,
    S: LumaStandard,
    T: Component + Float,
    _S: RgbSpace<WhitePoint = S::WhitePoint>, 
[src]

Performs the conversion.

impl<S, T, _S> From<Hwb<_S, T>> for Alpha<Luma<S, T>, T> where
    T: Component,
    S: LumaStandard,
    T: Component + Float,
    _S: RgbSpace<WhitePoint = S::WhitePoint>, 
[src]

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

impl<Wp, T, _S> From<Hwb<_S, T>> for Xyz<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint,
    T: Component + Float,
    _S: RgbSpace<WhitePoint = Wp>, 
[src]

Performs the conversion.

impl<Wp, T, _S> From<Hwb<_S, T>> for Alpha<Xyz<Wp, T>, T> where
    T: Component + Float,
    Wp: WhitePoint,
    T: Component + Float,
    _S: RgbSpace<WhitePoint = Wp>, 
[src]

Performs the conversion.

impl<Wp, T, _S> From<Hwb<_S, T>> for Yxy<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint,
    T: Component + Float,
    _S: RgbSpace<WhitePoint = Wp>, 
[src]

Performs the conversion.

impl<Wp, T, _S> From<Hwb<_S, T>> for Alpha<Yxy<Wp, T>, T> where
    T: Component + Float,
    Wp: WhitePoint,
    T: Component + Float,
    _S: RgbSpace<WhitePoint = Wp>, 
[src]

Performs the conversion.

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

Convert into XYZ space

Convert into Yxy color space

Convert into Lab* color space

Convert into LCh° color space

Convert into RGB color space.

Convert into HSL color space

Convert into HSV color space

Convert into Luma

Convert into HWB color space

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

Performs the conversion.

Auto Trait Implementations

impl<S, T> Send for Hwb<S, T> where
    S: Send,
    T: Send

impl<S, T> Sync for Hwb<S, T> where
    S: Sync,
    T: Sync