[][src]Struct collada::BindData

pub struct BindData {
    pub object_name: String,
    pub skeleton_name: String,
    pub joint_names: Vec<String>,
    pub vertex_weights: Vec<VertexWeight>,
    pub weights: Vec<f32>,
    pub inverse_bind_poses: Vec<Matrix4<f32>>,
}

Fields

object_name: Stringskeleton_name: Stringjoint_names: Vec<String>vertex_weights: Vec<VertexWeight>

Vertex weights, for vertex by index in mesh and joint by index in 'joint_names' and weight by index in 'weights'

weights: Vec<f32>

Weight values that are indexed by VertexWeights

inverse_bind_poses: Vec<Matrix4<f32>>

Inverse bind pose matrices listed in order of joint_names Column-major

Trait Implementations

impl Debug for BindData[src]

Auto Trait Implementations

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