Enum gltf::mesh::TexCoords
[−]
[src]
pub enum TexCoords<'a> {
F32(Iter<'a, [f32; 2]>),
U8(Iter<'a, [u8; 2]>),
U16(Iter<'a, [u16; 2]>),
}UV texture co-ordinates.
Variants
F32(Iter<'a, [f32; 2]>)UV texture co-ordinates of type [f32; 2].
U8(Iter<'a, [u8; 2]>)UV texture co-ordinates of type [u8; 2]>.
U16(Iter<'a, [u16; 2]>)UV texture co-ordinates of type [u16; 2]>.
Trait Implementations
impl<'a> Clone for TexCoords<'a>[src]
fn clone(&self) -> TexCoords<'a>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more