Enum gltf::mesh::util::ReadJoints[][src]

pub enum ReadJoints<'a> {
    U8(Iter<'a, [u8; 4]>),
    U16(Iter<'a, [u16; 4]>),
}

Vertex joints.

Variants

Joints of type [u8; 4]. Refer to the documentation on morph targets and skins for more information.

Joints of type [u16; 4]. Refer to the documentation on morph targets and skins for more information.

Methods

impl<'a> ReadJoints<'a>
[src]

Important traits for CastingIter<'a, A>

Reinterpret joints as u16, which can fit any possible joint.

Trait Implementations

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a> Send for ReadJoints<'a>

impl<'a> Sync for ReadJoints<'a>