Trait nannou_mesh::Normals[][src]

pub trait Normals {
    type Normal;
    type Normals: Channel<Element = Self::Normal>;
    fn normals(&self) -> &Self::Normals;
}
Expand description

Meshes that contain a channel of vertex normals.

Associated Types

The vector type used to represent the normal.

The channel type containing vertex normals.

Required methods

Borrow the normal channel from the mesh.

Implementations on Foreign Types

Implementors