[][src]Struct gltf::Skin

pub struct Skin<'a> { /* fields omitted */ }

Joints and matrices defining a skin.

Methods

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

pub fn index(&self) -> usize[src]

Returns the internal JSON index.

pub fn extras(&self) -> &'a Extras[src]

Optional application specific data.

pub fn inverse_bind_matrices(&self) -> Option<Accessor<'a>>[src]

Returns 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.

pub fn reader<'s, F>(&'a self, get_buffer_data: F) -> Reader<'a, 's, F> where
    F: Clone + Fn(Buffer<'a>) -> Option<&'s [u8]>, 
[src]

This is supported on feature="utils" only.

Constructs a skin reader.

pub fn joints(&self) -> Joints<'a>[src]

Returns an Iterator that visits the skeleton nodes used as joints in this skin.

pub fn name(&self) -> Option<&'a str>[src]

This is supported on feature="names" only.

Optional user-defined name for this object.

pub fn skeleton(&self) -> Option<Node<'a>>[src]

Returns the node used as the skeleton root. When None, joints transforms resolve to scene root.

Trait Implementations

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for Skin<'a>

impl<'a> Send for Skin<'a>

impl<'a> Sync for Skin<'a>

impl<'a> Unpin for Skin<'a>

impl<'a> UnwindSafe for Skin<'a>

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> 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, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.