Enum dae_parser::MorphMethod
source · [−]pub enum MorphMethod {
Normalized,
Relative,
}
Expand description
Which blending technique to use.
Variants
Normalized
(Target1, Target2, ...)*(w1, w2, ...) =
(1-w1-w2-...)*BaseMesh + w1*Target1 + w2*Target2 + ...
Relative
(Target1, Target2, ...) + (w1, w2, ...) =
BaseMesh + w1*Target1 + w2*Target2 + ...
Implementations
sourceimpl MorphMethod
impl MorphMethod
Trait Implementations
sourceimpl Clone for MorphMethod
impl Clone for MorphMethod
sourcefn clone(&self) -> MorphMethod
fn clone(&self) -> MorphMethod
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for MorphMethod
impl Debug for MorphMethod
sourceimpl Default for MorphMethod
impl Default for MorphMethod
sourceimpl Display for MorphMethod
impl Display for MorphMethod
sourceimpl FromStr for MorphMethod
impl FromStr for MorphMethod
sourceimpl PartialEq<MorphMethod> for MorphMethod
impl PartialEq<MorphMethod> for MorphMethod
impl Copy for MorphMethod
impl Eq for MorphMethod
impl StructuralEq for MorphMethod
impl StructuralPartialEq for MorphMethod
Auto Trait Implementations
impl RefUnwindSafe for MorphMethod
impl Send for MorphMethod
impl Sync for MorphMethod
impl Unpin for MorphMethod
impl UnwindSafe for MorphMethod
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more