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