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]>),
}
Expand description
UV texture co-ordinates.
Variants
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]>
.
F32(Iter<'a, [f32; 2]>)
UV texture co-ordinates of type [f32; 2]
.
Implementations
pub fn into_u8(self) -> CastingIter<'a, U8>ⓘNotable traits for CastingIter<'a, A>impl<'a, A: Cast> Iterator for CastingIter<'a, A> type Item = A::Output;
pub fn into_u8(self) -> CastingIter<'a, U8>ⓘNotable traits for CastingIter<'a, A>impl<'a, A: Cast> Iterator for CastingIter<'a, A> type Item = A::Output;
Notable traits for CastingIter<'a, A>
impl<'a, A: Cast> Iterator for CastingIter<'a, A> type Item = A::Output;
Reinterpret texture coordinates as u8. Lossy if the underlying iterator yields u16 or f32.
pub fn into_u16(self) -> CastingIter<'a, U16>ⓘNotable traits for CastingIter<'a, A>impl<'a, A: Cast> Iterator for CastingIter<'a, A> type Item = A::Output;
pub fn into_u16(self) -> CastingIter<'a, U16>ⓘNotable traits for CastingIter<'a, A>impl<'a, A: Cast> Iterator for CastingIter<'a, A> type Item = A::Output;
Notable traits for CastingIter<'a, A>
impl<'a, A: Cast> Iterator for CastingIter<'a, A> type Item = A::Output;
Reinterpret texture coordinates as u16. Lossy if the underlying iterator yields f32.
pub fn into_f32(self) -> CastingIter<'a, F32>ⓘNotable traits for CastingIter<'a, A>impl<'a, A: Cast> Iterator for CastingIter<'a, A> type Item = A::Output;
pub fn into_f32(self) -> CastingIter<'a, F32>ⓘNotable traits for CastingIter<'a, A>impl<'a, A: Cast> Iterator for CastingIter<'a, A> type Item = A::Output;
Notable traits for CastingIter<'a, A>
impl<'a, A: Cast> Iterator for CastingIter<'a, A> type Item = A::Output;
Reinterpret texture coordinates as f32. Lossy if the underlying iterator yields u16.
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for ReadTexCoords<'a>
impl<'a> Send for ReadTexCoords<'a>
impl<'a> Sync for ReadTexCoords<'a>
impl<'a> Unpin for ReadTexCoords<'a>
impl<'a> UnwindSafe for ReadTexCoords<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more