logo

Trait nannou::mesh::Channel[][src]

pub trait Channel {
    type Element;
    fn channel(&self) -> &[Self::Element];
}
Expand description

Types that may be used as a data channel within a mesh.

Associated Types

The type contained within the channel.

Required methods

Borrow the data channel.

Implementations on Foreign Types

Implementors