pub struct QuaternionKey {
pub time: f64,
pub value: Quaternion,
pub interpolation: AnimInterpolation,
}
Expand description
A keyframe containing a time and a quaternion value
Fields§
§time: f64
Time of the keyframe
value: Quaternion
Quaternion value at this time
interpolation: AnimInterpolation
Interpolation method
Auto Trait Implementations§
impl Freeze for QuaternionKey
impl RefUnwindSafe for QuaternionKey
impl Send for QuaternionKey
impl Sync for QuaternionKey
impl Unpin for QuaternionKey
impl UnwindSafe for QuaternionKey
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