Struct palette::Lch [] [src]

pub struct Lch<Wp = D65, T: Float = f32> where
    T: Float,
    Wp: WhitePoint
{ pub l: T, pub chroma: T, pub hue: LabHue<T>, pub white_point: PhantomData<Wp>, }

CIE L*C*h°, a polar version of CIE L*a*b*.

L*C*h° shares its range and perceptual uniformity with L*a*b*, but it's a cylindrical color space, like HSL and HSV. This gives it the same ability to directly change the hue and colorfulness of a color, while preserving other visual aspects.

Fields

L* is the lightness of the color. 0.0 gives absolute black and 100.0 gives the brightest white.

C* is the colorfulness of the color. It's similar to saturation. 0.0 gives gray scale colors, and numbers around 128-181 gives fully saturated colors. The upper limit of 128 should include the whole L*a*b* space and some more.

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

The white point associated with the color's illuminant and observer. D65 for 2 degree observer is used by default.

Methods

impl<T> Lch<D65, T> where
    T: Float
[src]

[src]

CIE L*C*h° with white point D65.

impl<Wp, T> Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[src]

[src]

CIE L*C*h°.

Trait Implementations

impl<Wp: Debug, T: Debug + Float> Debug for Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[src]

[src]

Formats the value using the given formatter.

impl<Wp: PartialEq, T: PartialEq + Float> PartialEq for Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[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<Wp, T> Copy for Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[src]

impl<Wp, T> Clone for Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<Wp, T> FromColor<Wp, T> for Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[src]

[src]

Convert from XYZ color space

[src]

Convert from L*a*b* color space

[src]

Convert from L*C*h° color space

[src]

Convert from Yxy 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 Luma

impl<Wp, T> Limited for Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[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<Wp, T> Mix for Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[src]

The type of the mixing factor.

[src]

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

impl<Wp, T> Shade for Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[src]

The type of the lighten/darken amount.

[src]

Lighten the color by amount.

[src]

Darken the color by amount.

impl<Wp, T> GetHue for Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[src]

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

[src]

Calculate a hue if possible. Read more

impl<Wp, T> Hue for Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[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<Wp, T> Saturate for Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[src]

The type of the (de)saturation factor.

[src]

Increase the saturation by factor.

[src]

Decrease the saturation by factor.

impl<Wp, T> Default for Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[src]

[src]

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

impl<Wp, T> Add<Lch<Wp, T>> for Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[src]

The resulting type after applying the + operator.

[src]

Performs the + operation.

impl<Wp, T> Add<T> for Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[src]

The resulting type after applying the + operator.

[src]

Performs the + operation.

impl<Wp, T> Sub<Lch<Wp, T>> for Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[src]

The resulting type after applying the - operator.

[src]

Performs the - operation.

impl<Wp, T> Sub<T> for Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[src]

The resulting type after applying the - operator.

[src]

Performs the - operation.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

impl<Wp, T> From<Xyz<Wp, T>> for Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[src]

[src]

Performs the conversion.

impl<Wp, T> From<Alpha<Xyz<Wp, T>, T>> for Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[src]

[src]

Performs the conversion.

impl<Wp, T> From<Yxy<Wp, T>> for Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[src]

[src]

Performs the conversion.

impl<Wp, T> From<Alpha<Yxy<Wp, T>, T>> for Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[src]

[src]

Performs the conversion.

impl<Wp, T> From<Lab<Wp, T>> for Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[src]

[src]

Performs the conversion.

impl<Wp, T> From<Alpha<Lab<Wp, T>, T>> for Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[src]

[src]

Performs the conversion.

impl<Wp, T> From<Luma<Wp, T>> for Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[src]

[src]

Performs the conversion.

impl<Wp, T> From<Alpha<Luma<Wp, T>, T>> for Lch<Wp, T> where
    T: Float,
    Wp: WhitePoint
[src]

[src]

Performs the conversion.

impl<S, T> From<Rgb<S, T>> for Lch<<S::Space as RgbSpace>::WhitePoint, T> where
    T: Float,
    S: RgbStandard
[src]

[src]

Performs the conversion.

impl<S, T> From<Alpha<Rgb<S, T>, T>> for Lch<<S::Space as RgbSpace>::WhitePoint, T> where
    T: Float,
    S: RgbStandard
[src]

[src]

Performs the conversion.

impl<Wp, T> ApproxEq for Lch<Wp, T> where
    T: Float + ApproxEq,
    T::Epsilon: Copy + Float,
    Wp: WhitePoint
[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.