Enum gltf::mesh::util::ReadJoints [−][src]
Expand description
Vertex joints.
Variants
U8(Iter<'a, [u8; 4]>)
Joints of type [u8; 4]
.
Refer to the documentation on morph targets and skins for more
information.
U16(Iter<'a, [u16; 4]>)
Joints of type [u16; 4]
.
Refer to the documentation on morph targets and skins for more
information.
Implementations
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 joints as u16, which can fit any possible joint.
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for ReadJoints<'a>
impl<'a> Send for ReadJoints<'a>
impl<'a> Sync for ReadJoints<'a>
impl<'a> Unpin for ReadJoints<'a>
impl<'a> UnwindSafe for ReadJoints<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more