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

UV texture co-ordinates of type [f32; 2].

UV texture co-ordinates of type [u8; 2]>.

UV texture co-ordinates of type [u16; 2]>.

Trait Implementations

impl<'a> Clone for TexCoords<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> Debug for TexCoords<'a>
[src]

Formats the value using the given formatter.