Struct palette::Lab [] [src]

pub struct Lab<T: Float = f32> {
    pub l: T,
    pub a: T,
    pub b: T,
}

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 can be unintuitive.

Fields

l: T

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

a: T

a* goes from red at -1.0 to green at 1.0.

b: T

b* goes from yellow at -1.0 to blue at 1.0.

Methods

impl<T: Float> Lab<T>
[src]

fn new(l: T, a: T, b: T) -> Lab<T>

CIE L*a*b*.

Trait Implementations

impl<T: PartialEq + Float> PartialEq for Lab<T>
[src]

fn eq(&self, __arg_0: &Lab<T>) -> bool

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

fn ne(&self, __arg_0: &Lab<T>) -> bool

This method tests for !=.

impl<T: Debug + Float> Debug for Lab<T>
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl<T: Copy + Float> Copy for Lab<T>
[src]

impl<T: Clone + Float> Clone for Lab<T>
[src]

fn clone(&self) -> Lab<T>

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl<T: Float> FromColor<T> for Lab<T>
[src]

fn from_xyz(xyz: Xyz<T>) -> Self

Convert from XYZ color space

fn from_lab(lab: Lab<T>) -> Self

Convert from L*a*b* color space

fn from_lch(lch: Lch<T>) -> Self

Convert from L*C*h° color space

fn from_yxy(inp: Yxy<T>) -> Self

Convert from Yxy color space

fn from_rgb(inp: Rgb<T>) -> Self

Convert from RGB color space

fn from_hsl(inp: Hsl<T>) -> Self

Convert from HSL color space

fn from_hsv(inp: Hsv<T>) -> Self

Convert from HSV color space

fn from_hwb(inp: Hwb<T>) -> Self

Convert from HWB color space

fn from_luma(inp: Luma<T>) -> Self

Convert from Luma

impl<T: Float> Limited for Lab<T>
[src]

fn is_valid(&self) -> bool

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

fn clamp(&self) -> Lab<T>

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

fn clamp_self(&mut self)

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

impl<T: Float> Mix for Lab<T>
[src]

type Scalar = T

The type of the mixing factor.

fn mix(&self, other: &Lab<T>, factor: T) -> Lab<T>

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

impl<T: Float> Shade for Lab<T>
[src]

type Scalar = T

The type of the lighten/darken amount.

fn lighten(&self, amount: T) -> Lab<T>

Lighten the color by amount.

fn darken(&self, amount: Self::Scalar) -> Self

Darken the color by amount.

impl<T: Float> GetHue for Lab<T>
[src]

type Hue = LabHue<T>

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

fn get_hue(&self) -> Option<LabHue<T>>

Calculate a hue if possible. Read more

impl<T: Float> ComponentWise for Lab<T>
[src]

type Scalar = T

The scalar type for color components.

fn component_wise<F: FnMut(T, T) -> T>(&self, other: &Lab<T>, f: F) -> Lab<T>

Perform a binary operation on this and an other color.

fn component_wise_self<F: FnMut(T) -> T>(&self, f: F) -> Lab<T>

Perform a unary operation on this color.

impl<T: Float> Default for Lab<T>
[src]

fn default() -> Lab<T>

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

impl<T: Float> Add<Lab<T>> for Lab<T>
[src]

type Output = Lab<T>

The resulting type after applying the + operator

fn add(self, other: Lab<T>) -> Lab<T>

The method for the + operator

impl<T: Float> Add<T> for Lab<T>
[src]

type Output = Lab<T>

The resulting type after applying the + operator

fn add(self, c: T) -> Lab<T>

The method for the + operator

impl<T: Float> Sub<Lab<T>> for Lab<T>
[src]

type Output = Lab<T>

The resulting type after applying the - operator

fn sub(self, other: Lab<T>) -> Lab<T>

The method for the - operator

impl<T: Float> Sub<T> for Lab<T>
[src]

type Output = Lab<T>

The resulting type after applying the - operator

fn sub(self, c: T) -> Lab<T>

The method for the - operator

impl<T: Float> Mul<Lab<T>> for Lab<T>
[src]

type Output = Lab<T>

The resulting type after applying the * operator

fn mul(self, other: Lab<T>) -> Lab<T>

The method for the * operator

impl<T: Float> Mul<T> for Lab<T>
[src]

type Output = Lab<T>

The resulting type after applying the * operator

fn mul(self, c: T) -> Lab<T>

The method for the * operator

impl<T: Float> Div<Lab<T>> for Lab<T>
[src]

type Output = Lab<T>

The resulting type after applying the / operator

fn div(self, other: Lab<T>) -> Lab<T>

The method for the / operator

impl<T: Float> Div<T> for Lab<T>
[src]

type Output = Lab<T>

The resulting type after applying the / operator

fn div(self, c: T) -> Lab<T>

The method for the / operator

impl<T: Float> IntoColor<T> for Lab<T>
[src]

fn into_xyz(self) -> Xyz<T>

Convert into XYZ space

fn into_yxy(self) -> Yxy<T>

Convert into Yxy color space

fn into_lab(self) -> Lab<T>

Convert into L*a*b* color space

fn into_lch(self) -> Lch<T>

Convert into L*C*h° color space

fn into_rgb(self) -> Rgb<T>

Convert into RGB color space.

fn into_hsl(self) -> Hsl<T>

Convert into HSL color space

fn into_hsv(self) -> Hsv<T>

Convert into HSV color space

fn into_luma(self) -> Luma<T>

Convert into Luma

fn into_hwb(self) -> Hwb<T>

Convert into HWB color space

impl<T: Float> From<Alpha<Lab<T>, T>> for Lab<T>
[src]

fn from(color: Alpha<Lab<T>, T>) -> Lab<T>

Performs the conversion.

impl<T: Float> From<Color<T>> for Lab<T>
[src]

fn from(color: Color<T>) -> Lab<T>

Performs the conversion.

impl<T: Float> From<Xyz<T>> for Lab<T>
[src]

fn from(other: Xyz<T>) -> Lab<T>

Performs the conversion.

impl<T: Float> From<Alpha<Xyz<T>, T>> for Lab<T>
[src]

fn from(other: Alpha<Xyz<T>, T>) -> Lab<T>

Performs the conversion.

impl<T: Float> From<Yxy<T>> for Lab<T>
[src]

fn from(other: Yxy<T>) -> Lab<T>

Performs the conversion.

impl<T: Float> From<Alpha<Yxy<T>, T>> for Lab<T>
[src]

fn from(other: Alpha<Yxy<T>, T>) -> Lab<T>

Performs the conversion.

impl<T: Float> From<Lch<T>> for Lab<T>
[src]

fn from(other: Lch<T>) -> Lab<T>

Performs the conversion.

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

fn from(other: Alpha<Lch<T>, T>) -> Lab<T>

Performs the conversion.

impl<T: Float> From<Rgb<T>> for Lab<T>
[src]

fn from(other: Rgb<T>) -> Lab<T>

Performs the conversion.

impl<T: Float> From<Alpha<Rgb<T>, T>> for Lab<T>
[src]

fn from(other: Alpha<Rgb<T>, T>) -> Lab<T>

Performs the conversion.

impl<T: Float> From<Hsl<T>> for Lab<T>
[src]

fn from(other: Hsl<T>) -> Lab<T>

Performs the conversion.

impl<T: Float> From<Alpha<Hsl<T>, T>> for Lab<T>
[src]

fn from(other: Alpha<Hsl<T>, T>) -> Lab<T>

Performs the conversion.

impl<T: Float> From<Hsv<T>> for Lab<T>
[src]

fn from(other: Hsv<T>) -> Lab<T>

Performs the conversion.

impl<T: Float> From<Alpha<Hsv<T>, T>> for Lab<T>
[src]

fn from(other: Alpha<Hsv<T>, T>) -> Lab<T>

Performs the conversion.

impl<T: Float> From<Hwb<T>> for Lab<T>
[src]

fn from(other: Hwb<T>) -> Lab<T>

Performs the conversion.

impl<T: Float> From<Alpha<Hwb<T>, T>> for Lab<T>
[src]

fn from(other: Alpha<Hwb<T>, T>) -> Lab<T>

Performs the conversion.

impl<T: Float> From<Luma<T>> for Lab<T>
[src]

fn from(other: Luma<T>) -> Lab<T>

Performs the conversion.

impl<T: Float> From<Alpha<Luma<T>, T>> for Lab<T>
[src]

fn from(other: Alpha<Luma<T>, T>) -> Lab<T>

Performs the conversion.

impl<T: Float + ApproxEq> ApproxEq for Lab<T> where T::Epsilon: Copy + Float
[src]

type Epsilon = T::Epsilon

Used for specifying relative comparisons.

fn default_epsilon() -> Self::Epsilon

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

fn default_max_relative() -> Self::Epsilon

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

fn default_max_ulps() -> u32

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

fn relative_eq(&self, other: &Self, epsilon: Self::Epsilon, max_relative: Self::Epsilon) -> bool

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

fn ulps_eq(&self, other: &Self, epsilon: Self::Epsilon, max_ulps: u32) -> bool

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

fn relative_ne(&self, other: &Self, epsilon: Self::Epsilon, max_relative: Self::Epsilon) -> bool

The inverse of ApproxEq::relative_eq.

fn ulps_ne(&self, other: &Self, epsilon: Self::Epsilon, max_ulps: u32) -> bool

The inverse of ApproxEq::ulps_eq.