[][src]Struct gltf_json::Skin

pub struct Skin {
    pub extensions: Option<Skin>,
    pub extras: Extras,
    pub inverse_bind_matrices: Option<Index<Accessor>>,
    pub joints: Vec<Index<Node>>,
    pub skeleton: Option<Index<Node>>,
}

Joints and matrices defining a skin.

Fields

extensions: Option<Skin>

Extension specific data.

extras: Extras

Optional application specific data.

inverse_bind_matrices: Option<Index<Accessor>>

The index of the accessor containing the 4x4 inverse-bind matrices.

When None,each matrix is assumed to be the 4x4 identity matrix which implies that the inverse-bind matrices were pre-applied.

joints: Vec<Index<Node>>

Indices of skeleton nodes used as joints in this skin.

The array length must be the same as the count property of the inverse_bind_matrices Accessor (when defined).

skeleton: Option<Index<Node>>

The index of the node used as a skeleton root.

When None, joints transforms resolve to scene root.

Trait Implementations

impl<'a> Get<Skin> for Root[src]

impl Validate for Skin[src]

impl Clone for Skin[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Skin[src]

impl Serialize for Skin[src]

impl<'de> Deserialize<'de> for Skin[src]

Auto Trait Implementations

impl Send for Skin

impl Sync for Skin

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]