Enum dae_parser::MorphMethod [−][src]
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
Trait Implementations
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
Mutably borrows from an owned value. Read more