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

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

A set of primaries and a white point.

Associated Types

type Primaries: Primaries

The primaries of the RGB color space.

type WhitePoint: WhitePoint

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

impl RgbSpace for Srgb[src]

Loading content...