pub struct Vec3Key {
pub time: f32,
pub value: Vec3,
pub in_tangent: Vec3,
pub out_tangent: Vec3,
}Expand description
A Vec3 keyframe with cubic Hermite tangents.
Fields§
§time: f32§value: Vec3§in_tangent: Vec3In-tangent (arriving slope).
out_tangent: Vec3Out-tangent (leaving slope).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Vec3Key
impl RefUnwindSafe for Vec3Key
impl Send for Vec3Key
impl Sync for Vec3Key
impl Unpin for Vec3Key
impl UnsafeUnpin for Vec3Key
impl UnwindSafe for Vec3Key
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