pub struct MorphMeshKey<'a> {
pub time: f64,
pub values: &'a [u32],
pub weights: &'a [f64],
}
Expand description
Morph mesh key (weights for multiple targets)
Fields§
§time: f64
Time of this key in the animation
values: &'a [u32]
Indices of the morph targets
weights: &'a [f64]
Weights for each morph target
Auto Trait Implementations§
impl<'a> Freeze for MorphMeshKey<'a>
impl<'a> RefUnwindSafe for MorphMeshKey<'a>
impl<'a> Send for MorphMeshKey<'a>
impl<'a> Sync for MorphMeshKey<'a>
impl<'a> Unpin for MorphMeshKey<'a>
impl<'a> UnwindSafe for MorphMeshKey<'a>
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