Trait nannou_mesh::ExtendFromSlice[][src]

pub trait ExtendFromSlice<'a> {
    type Slice: 'a;
    fn extend_from_slice(&mut self, slice: Self::Slice);
}
Expand description

Meshes that may be extended from a slice of data.

Associated Types

The slice type expected via the mesh.

Note: This may be multiple combined slices if the mesh contains multiple channels of data.

Required methods

Extend the mesh.

Implementors