pub trait TexCoords {
    type TexCoord;
    type TexCoords: Channel<Element = Self::TexCoord>;
    // Required method
    fn tex_coords(&self) -> &Self::TexCoords;
}Expand description
Meshes that contain a channel of texture coordinates.
Required Associated Types§
Required Methods§
sourcefn tex_coords(&self) -> &Self::TexCoords
 
fn tex_coords(&self) -> &Self::TexCoords
Borrow the texture coordinate channel from the mesh.