Struct nannou::draw::background::Background[][src]

pub struct Background<'a, S = DefaultScalar> where
    S: 'a + BaseFloat
{ /* fields omitted */ }

A type used to update the background colour.

Methods

impl<'a, S> Background<'a, S> where
    S: BaseFloat
[src]

Clear the background with the given color.

This method supports any color type that can be converted into RGBA.

Colors that have no alpha channel will be given an opaque alpha channel value 1.0.

Specify the color via red, green and blue channels.

Specify the color via red, green, blue and alpha channels.

Specify the color via hue, saturation and luminance.

If you're looking for HSV or HSB, use the hsv method instead.

The given hue expects a value between 0.0 and 1.0 where 0.0 is 0 degress and 1.0 is 360 degrees (or 2 PI radians).

See the wikipedia entry for more details on this color space.

Specify the color via hue, saturation, luminance and an alpha channel.

If you're looking for HSVA or HSBA, use the hsva method instead.

The given hue expects a value between 0.0 and 1.0 where 0.0 is 0 degress and 1.0 is 360 degrees (or 2 PI radians).

See the wikipedia entry for more details on this color space.

Specify the color via hue, saturation and value (brightness).

This is sometimes also known as "hsb".

The given hue expects a value between 0.0 and 1.0 where 0.0 is 0 degress and 1.0 is 360 degrees (or 2 PI radians).

See the wikipedia entry for more details on this color space.

Specify the color via hue, saturation, value (brightness) and an alpha channel.

This is sometimes also known as "hsba".

The given hue expects a value between 0.0 and 1.0 where 0.0 is 0 degress and 1.0 is 360 degrees (or 2 PI radians).

See the wikipedia entry for more details on this color space.

Auto Trait Implementations

impl<'a, S = f32> !Send for Background<'a, S>

impl<'a, S = f32> !Sync for Background<'a, S>