pub trait Indices {
type Index;
type Indices: Channel<Element = Self::Index>;
// Required method
fn indices(&self) -> &Self::Indices;
}
Expand description
Meshes that contain a channel of indices that describe the edges between points.