Trait nannou::color::rgb::RgbSpace[][src]

pub trait RgbSpace {
    type Primaries: Primaries;
    type WhitePoint: WhitePoint;
}

A set of primaries and a white point.

Associated Types

type Primaries: Primaries[src]

The primaries of the RGB color space.

type WhitePoint: WhitePoint[src]

The white point of the RGB color space.

Loading content...

Implementations on Foreign Types

impl<P, W> RgbSpace for (P, W) where
    P: Primaries,
    W: WhitePoint
[src]

type Primaries = P

type WhitePoint = W

Loading content...

Implementors

Loading content...