Trait nannou_mesh::Points[][src]

pub trait Points {
    type Point;
    type Points: Channel<Element = Self::Point>;
    fn points(&self) -> &Self::Points;
}
Expand description

All meshes must contain at least one vertex channel.

Associated Types

The vertex type used to represent the location of a vertex.

The channel type containing points.

Required methods

Borrow the vertex channel from the mesh.

Implementations on Foreign Types

Implementors