pub trait GetVertex<I> {
type Vertex;
// Required method
fn get_vertex(&self, index: I) -> Option<Self::Vertex>;
}
Expand description
Mesh types that can be indexed to produce a vertex.
Required Associated Types§
Required Methods§
sourcefn get_vertex(&self, index: I) -> Option<Self::Vertex>
fn get_vertex(&self, index: I) -> Option<Self::Vertex>
Create a vertex containing all channel properties for the given index.