pub enum ReadJoints<'a> {
U8(Iter<'a, [u8; 4]>),
U16(Iter<'a, [u16; 4]>),
}Available on crate feature
utils only.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§
Source§impl<'a> ReadJoints<'a>
impl<'a> ReadJoints<'a>
Sourcepub fn into_u16(self) -> CastingIter<'a, U16> ⓘ
pub fn into_u16(self) -> CastingIter<'a, U16> ⓘ
Reinterpret joints as u16, which can fit any possible joint.
Trait Implementations§
Source§impl<'a> Clone for ReadJoints<'a>
impl<'a> Clone for ReadJoints<'a>
Source§fn clone(&self) -> ReadJoints<'a>
fn clone(&self) -> ReadJoints<'a>
Returns a duplicate 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> Freeze for ReadJoints<'a>
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§
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