Enum gltf_utils::TexCoords [] [src]

pub enum TexCoords<'a> {
    U8(AccessorIter<'a, [u8; 2]>),
    U16(AccessorIter<'a, [u16; 2]>),
    F32(AccessorIter<'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> TexCoords<'a>
[src]

Important traits for CastingIter<'a, A>
[src]

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

Important traits for CastingIter<'a, A>
[src]

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

Important traits for CastingIter<'a, A>
[src]

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

Trait Implementations

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a> Send for TexCoords<'a>

impl<'a> Sync for TexCoords<'a>