pub struct BlendShape {
pub name: String,
pub deltas: Vec<Vec3>,
}Expand description
A morph-target (blend shape) storing per-vertex position deltas.
Fields§
§name: String§deltas: Vec<Vec3>Per-vertex displacement from the base mesh.
Implementations§
Trait Implementations§
Source§impl Clone for BlendShape
impl Clone for BlendShape
Source§fn clone(&self) -> BlendShape
fn clone(&self) -> BlendShape
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for BlendShape
impl RefUnwindSafe for BlendShape
impl Send for BlendShape
impl Sync for BlendShape
impl Unpin for BlendShape
impl UnsafeUnpin for BlendShape
impl UnwindSafe for BlendShape
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