Struct palette::Rgb [] [src]

pub struct Rgb<T: Float = f32> {
    pub red: T,
    pub green: T,
    pub blue: T,
}

Linear RGB.

RGB is probably the most common color space, when it comes to computer graphics, and it's defined as an additive mixture of red, green and blue light, where gray scale colors are created when these three channels are equal in strength. This particular RGB type is based on the ITU-R BT.709 primaries, which makes it a linear version of sRGB.

Conversions and operations on this color space assumes that it's linear, meaning that gamma correction is required when converting to and from a displayable RGB, such as sRGB. See the pixel module for encoding types.

Fields

The amount of red light, where 0.0 is no red light and 1.0 is the highest displayable amount.

The amount of green light, where 0.0 is no green light and 1.0 is the highest displayable amount.

The amount of blue light, where 0.0 is no blue light and 1.0 is the highest displayable amount.

Methods

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

Linear RGB.

Linear RGB from 8 bit values.

Linear RGB from a linear pixel value.

Convert to a linear RGB pixel. Rgb is already assumed to be linear, so the components will just be clamped to [0.0, 1.0] before conversion.

use palette::Rgb;

let c = Rgb::new(0.5, 0.3, 0.1);
assert_eq!((c.red, c.green, c.blue), c.to_pixel());
assert_eq!((0.5, 0.3, 0.1), c.to_pixel());

Trait Implementations

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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

Formats the value using the given formatter.

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

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

This method tests for !=.

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

Convert from XYZ color space

Convert from RGB color space

Convert from HSL color space

Convert from HSV color space

Convert from Luma

Convert from Yxy color space

Convert from Lab* color space

Convert from LCh° color space

Convert from HWB color space

impl<T: Float> Limited for Rgb<T>
[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<T: Float> Mix for Rgb<T>
[src]

The type of the mixing factor.

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

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

The type of the lighten/darken amount.

Lighten the color by amount.

Darken the color by amount.

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

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

Calculate a hue if possible. Read more

impl<T: Float> Blend for Rgb<T>
[src]

The core color type. Typically Self for color types without alpha.

Convert the color to premultiplied alpha.

Convert the color from premultiplied alpha.

Blend self, as the source color, with destination, using blend_function. Anything that implements BlendFunction is acceptable, including functions and closures. Read more

Place self over other. This is the good old common alpha composition equation. Read more

Results in the parts of self that overlaps the visible parts of other. Read more

Results in the parts of self that lies outside the visible parts of other. Read more

Place self over only the visible parts of other.

Results in either self or other, where they do not overlap.

Add self and other. This uses the alpha component to regulate the effect, so it's not just plain component wise addition. Read more

Multiply self with other. This uses the alpha component to regulate the effect, so it's not just plain component wise multiplication. Read more

Make a color which is at least as light as self or other.

Multiply self or other if other is dark, or screen them if other is light. This results in an S curve. Read more

Return the darkest parts of self and other.

Return the lightest parts of self and other.

Lighten other to reflect self. Results in other if self is black. Read more

Darken other to reflect self. Results in other if self is white. Read more

Multiply self or other if other is dark, or screen them if self is light. This is similar to overlay, but depends on self instead of other. Read more

Lighten other if self is light, or darken other as if it's burned if self is dark. The effect is increased if the components of self is further from 0.5. Read more

Return the absolute difference between self and other. It's basically abs(self - other), but regulated by the alpha component. Read more

Similar to difference, but appears to result in a lower contrast. other is inverted if self is white, and preserved if self is black. Read more

impl<T: Float> ComponentWise for Rgb<T>
[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<T: Float> Default for Rgb<T>
[src]

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

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

The resulting type after applying the + operator

The method for the + operator

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

The resulting type after applying the + operator

The method for the + operator

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

The resulting type after applying the - operator

The method for the - operator

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

The resulting type after applying the - operator

The method for the - operator

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

The resulting type after applying the * operator

The method for the * operator

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

The resulting type after applying the * operator

The method for the * operator

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

The resulting type after applying the / operator

The method for the / operator

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

The resulting type after applying the / operator

The method for the / operator

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

Performs the conversion.

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

Performs the conversion.

impl<T: Float> IntoColor<T> for Rgb<T>
[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<T: Float> From<Alpha<Rgb<T>, T>> for Rgb<T>
[src]

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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