pub struct FbxSkin {
pub clusters: Vec<FbxSkinCluster>,
pub bind_pose: Vec<(FbxNodeId, FbxTransform)>,
}Available on crate features
fbx-reader or fbx-writer only.Expand description
Skinning data attached to a mesh instance.
Fields§
§clusters: Vec<FbxSkinCluster>All clusters, one for every influencing joint.
bind_pose: Vec<(FbxNodeId, FbxTransform)>Explicit FBX BindPose matrices keyed by model id, when present.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FbxSkin
impl RefUnwindSafe for FbxSkin
impl Send for FbxSkin
impl Sync for FbxSkin
impl Unpin for FbxSkin
impl UnsafeUnpin for FbxSkin
impl UnwindSafe for FbxSkin
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