Struct palette::Hsv [] [src]

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

Linear HSV color space.

HSV is a cylindrical version of RGB and it's very similar to HSL. The difference is that the value component in HSV determines the brightness of the color, and not the lightness. The difference is that, for example, red (100% R, 0% G, 0% B) and white (100% R, 100% G, 100% B) has the same brightness (or value), but not the same 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 bright the color will look. 0.0 will be black, and 1.0 will give a bright an clear color that goes towards white when saturation goes towards 0.0.

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

Methods

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

[src]

HSV for linear sRGB.

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

[src]

Linear HSV.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

impl<S, T> Clone for Hsv<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 Hsv<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 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 Luma

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

[src]

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

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

The resulting type after applying the + operator.

[src]

Performs the + operation.

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

The resulting type after applying the - operator.

[src]

Performs the - operation.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.