pub struct FbxKeyframe {
pub time_seconds: f32,
pub bone_index: usize,
pub translation: [f32; 3],
pub rotation: [f32; 4],
pub scale: [f32; 3],
}Expand description
Extracted animation keyframe.
Fields§
§time_seconds: f32§bone_index: usize§translation: [f32; 3]§rotation: [f32; 4]§scale: [f32; 3]Trait Implementations§
Source§impl Clone for FbxKeyframe
impl Clone for FbxKeyframe
Source§fn clone(&self) -> FbxKeyframe
fn clone(&self) -> FbxKeyframe
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 FbxKeyframe
impl Debug for FbxKeyframe
impl Copy for FbxKeyframe
Auto Trait Implementations§
impl Freeze for FbxKeyframe
impl RefUnwindSafe for FbxKeyframe
impl Send for FbxKeyframe
impl Sync for FbxKeyframe
impl Unpin for FbxKeyframe
impl UnsafeUnpin for FbxKeyframe
impl UnwindSafe for FbxKeyframe
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