pub struct FbxSkinWeight {
pub bone_indices: [u32; 4],
pub bone_weights: [f32; 4],
}Expand description
Per-vertex skin weight (4-bone influence).
Fields§
§bone_indices: [u32; 4]§bone_weights: [f32; 4]Trait Implementations§
Source§impl Clone for FbxSkinWeight
impl Clone for FbxSkinWeight
Source§fn clone(&self) -> FbxSkinWeight
fn clone(&self) -> FbxSkinWeight
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 moreSource§impl Debug for FbxSkinWeight
impl Debug for FbxSkinWeight
Source§impl Default for FbxSkinWeight
impl Default for FbxSkinWeight
impl Copy for FbxSkinWeight
Auto Trait Implementations§
impl Freeze for FbxSkinWeight
impl RefUnwindSafe for FbxSkinWeight
impl Send for FbxSkinWeight
impl Sync for FbxSkinWeight
impl Unpin for FbxSkinWeight
impl UnsafeUnpin for FbxSkinWeight
impl UnwindSafe for FbxSkinWeight
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