Struct palette::Lab[][src]

#[repr(C)]
pub struct Lab<Wp = D65, T = f32> where
    T: Component + Float,
    Wp: WhitePoint
{ pub l: T, pub a: T, pub b: T, pub white_point: PhantomData<Wp>, }

The CIE L*a*b* (CIELAB) color space.

CIE L*a*b* is a device independent color space which includes all perceivable colors. It's sometimes used to convert between other color spaces, because of its ability to represent all of their colors, and sometimes in color manipulation, because of its perceptual uniformity. This means that the perceptual difference between two colors is equal to their numerical difference.

The parameters of L*a*b* are quite different, compared to many other color spaces, so manipulating them manually may be unintuitive.

Fields

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

a* goes from red at -128 to green at 127.

b* goes from yellow at -128 to blue at 127.

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

Methods

impl<T> Lab<D65, T> where
    T: Component + Float
[src]

CIE L*a*b* with white point D65.

impl<Wp, T> Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint
[src]

CIE L*a*b*.

Convert to a (L\*, a\*, b\*) tuple.

Convert from a (L\*, a\*, b\*) tuple.

Trait Implementations

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

impl<S, T> From<Lab<S::WhitePoint, T>> for Alpha<Hsv<S, T>, 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<Lab<S::WhitePoint, T>> for Alpha<Hwb<S, T>, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float
[src]

Performs the conversion.

impl<Wp, T> FromColor<Wp, T> for Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint,
    T: Component + Float,
    Wp: WhitePoint
[src]

Convert from XYZ color space

Convert from Lab* color space

Convert from LCh° color space

Convert from Yxy color space

Convert from RGB color space

Convert from HSL color space

Convert from HSV color space

Convert from HWB color space

Convert from Luma

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

impl<Wp, T, _S> From<Hsl<_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<Alpha<Hsl<_S, T>, 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<Hsv<_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<Alpha<Hsv<_S, T>, 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 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<Alpha<Hwb<_S, T>, 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> From<Alpha<Lab<Wp, T>, T>> for Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint,
    T: Component + Float
[src]

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

impl<Wp, T, _S> From<Color<_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<Alpha<Color<_S, T>, 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> Pixel<T> for Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint
[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<Wp: Debug, T: Debug> Debug for Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint
[src]

Formats the value using the given formatter. Read more

impl<Wp: PartialEq, T: PartialEq> PartialEq for Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint
[src]

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

This method tests for !=.

impl<Wp, T> Copy for Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint
[src]

impl<Wp, T> Clone for Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Performs the conversion.

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

Performs the conversion.

impl<Wp: WhitePoint, T: Component + Float> From<(T, T, T)> for Lab<Wp, T>
[src]

Performs the conversion.

impl<Wp: WhitePoint, T: Component + Float> Into<(T, T, T)> for Lab<Wp, T>
[src]

Performs the conversion.

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

The type of the mixing factor.

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

impl<Wp, T> Shade for Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint
[src]

The type of the lighten/darken amount.

Lighten the color by amount.

Darken the color by amount.

impl<Wp, T> GetHue for Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint
[src]

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

Calculate a hue if possible. Read more

impl<Wp, T> ComponentWise for Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint
[src]

The scalar type for color components.

Perform a binary operation on this and an other color.

Perform a unary operation on this color.

impl<Wp, T> Default for Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint
[src]

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

impl<Wp, T> Add<Lab<Wp, T>> for Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<Wp, T> Add<T> for Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<Wp, T> Sub<Lab<Wp, T>> for Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<Wp, T> Sub<T> for Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<Wp, T> Mul<Lab<Wp, T>> for Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<Wp, T> Mul<T> for Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<Wp, T> Div<Lab<Wp, T>> for Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<Wp, T> Div<T> for Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<Wp, T, P: ?Sized> AsRef<P> for Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint,
    P: RawPixel<T>, 
[src]

Performs the conversion.

impl<Wp, T, P: ?Sized> AsMut<P> for Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint,
    P: RawPixel<T>, 
[src]

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

impl<Wp, T> IntoColor<Wp, T> for Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint
[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<Wp, T> ApproxEq for Lab<Wp, T> where
    T: Component + Float + ApproxEq,
    T::Epsilon: Copy + Float,
    Wp: WhitePoint
[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<S, T> From<Lab<S::WhitePoint, T>> for Color<S, T> where
    T: Float + Component,
    S: RgbSpace
[src]

Performs the conversion.

Auto Trait Implementations

impl<Wp, T> Send for Lab<Wp, T> where
    T: Send,
    Wp: Send

impl<Wp, T> Sync for Lab<Wp, T> where
    T: Sync,
    Wp: Sync