pub trait Normals {
type Normal;
type Normals: Channel<Element = Self::Normal>;
// Required method
fn normals(&self) -> &Self::Normals;
}
Expand description
Meshes that contain a channel of vertex normals.
pub trait Normals {
type Normal;
type Normals: Channel<Element = Self::Normal>;
// Required method
fn normals(&self) -> &Self::Normals;
}
Meshes that contain a channel of vertex normals.