Trait nannou_mesh::Colors[][src]

pub trait Colors {
    type Color;
    type Colors: Channel<Element = Self::Color>;
    fn colors(&self) -> &Self::Colors;
}
Expand description

Meshes that contain a channel of colors.

Associated Types

The color type stored within the channel.

The channel type containing colors.

Required methods

Borrow the color channel from the mesh.

Implementations on Foreign Types

Implementors