pub struct MultiMorphTarget {
pub base_positions: Vec<Vec3>,
pub targets: Vec<Vec<Vec3>>,
pub weights: Vec<f32>,
}Expand description
Multi-target morph: blend between N different pose states.
Fields§
§base_positions: Vec<Vec3>Base positions.
targets: Vec<Vec<Vec3>>Multiple target position sets.
weights: Vec<f32>Weight for each target (should sum to <= 1.0).
Implementations§
Auto Trait Implementations§
impl Freeze for MultiMorphTarget
impl RefUnwindSafe for MultiMorphTarget
impl Send for MultiMorphTarget
impl Sync for MultiMorphTarget
impl Unpin for MultiMorphTarget
impl UnsafeUnpin for MultiMorphTarget
impl UnwindSafe for MultiMorphTarget
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