pub struct JointTrack {
pub joint: usize,
pub keys: Vec<Keyframe>,
}Expand description
An animation channel for one joint: a time-ordered list of keyframes.
Fields§
§joint: usizeIndex of the joint this track drives.
keys: Vec<Keyframe>Keyframes, in ascending time order.
Trait Implementations§
Source§impl Clone for JointTrack
impl Clone for JointTrack
Source§fn clone(&self) -> JointTrack
fn clone(&self) -> JointTrack
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for JointTrack
impl RefUnwindSafe for JointTrack
impl Send for JointTrack
impl Sync for JointTrack
impl Unpin for JointTrack
impl UnsafeUnpin for JointTrack
impl UnwindSafe for JointTrack
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