pub struct FbxSkinData {
pub weights: Vec<FbxSkinWeight>,
pub deformer_count: usize,
}Expand description
Aggregated skin data from all deformers.
Fields§
§weights: Vec<FbxSkinWeight>Per-vertex skin weights (same length as vertices).
deformer_count: usizeNumber of skin deformers found.
Trait Implementations§
Source§impl Clone for FbxSkinData
impl Clone for FbxSkinData
Source§fn clone(&self) -> FbxSkinData
fn clone(&self) -> FbxSkinData
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 FbxSkinData
impl Debug for FbxSkinData
Source§impl Default for FbxSkinData
impl Default for FbxSkinData
Source§fn default() -> FbxSkinData
fn default() -> FbxSkinData
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FbxSkinData
impl RefUnwindSafe for FbxSkinData
impl Send for FbxSkinData
impl Sync for FbxSkinData
impl Unpin for FbxSkinData
impl UnsafeUnpin for FbxSkinData
impl UnwindSafe for FbxSkinData
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