Enum gltf::mesh::util::ReadTexCoords
source · 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§
source§impl<'a> ReadTexCoords<'a>
impl<'a> ReadTexCoords<'a>
sourcepub fn into_u8(self) -> CastingIter<'a, U8> ⓘ
pub fn into_u8(self) -> CastingIter<'a, U8> ⓘ
Reinterpret texture coordinates as u8. Lossy if the underlying iterator yields u16 or f32.
sourcepub fn into_u16(self) -> CastingIter<'a, U16> ⓘ
pub fn into_u16(self) -> CastingIter<'a, U16> ⓘ
Reinterpret texture coordinates as u16. Lossy if the underlying iterator yields f32.
sourcepub fn into_f32(self) -> CastingIter<'a, F32> ⓘ
pub fn into_f32(self) -> CastingIter<'a, F32> ⓘ
Reinterpret texture coordinates as f32. Lossy if the underlying iterator yields u16.
Trait Implementations§
source§impl<'a> Clone for ReadTexCoords<'a>
impl<'a> Clone for ReadTexCoords<'a>
source§fn clone(&self) -> ReadTexCoords<'a>
fn clone(&self) -> ReadTexCoords<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto 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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more