Enum gltf::mesh::util::ReadTexCoords[][src]

pub enum ReadTexCoords<'a> {
    U8(Iter<'a, [u8; 2]>),
    U16(Iter<'a, [u16; 2]>),
    F32(Iter<'a, [f32; 2]>),
}

UV texture co-ordinates.

Variants

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

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

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

Methods

impl<'a> ReadTexCoords<'a>
[src]

Important traits for CastingIter<'a, A>

Reinterpret texture coordinates as u8. Lossy if the underlying iterator yields u16 or f32.

Important traits for CastingIter<'a, A>

Reinterpret texture coordinates as u16. Lossy if the underlying iterator yields f32.

Important traits for CastingIter<'a, A>

Reinterpret texture coordinates as f32. Lossy if the underlying iterator yields u16.

Trait Implementations

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a> Send for ReadTexCoords<'a>

impl<'a> Sync for ReadTexCoords<'a>