protected bool Equals(SimpleMassiveBlendAnimatedBehavior other)
 {
     return(Equals(Zero, other.Zero) && Equals(One, other.One) && ParameterName == other.ParameterName);
 }
 public static IAnimatedBehavior Maybe(IAnimatedBehavior zero, IAnimatedBehavior one, string parameterName)
 {
     return(zero.Equals(one) ? zero : SimpleMassiveBlendAnimatedBehavior.Of(zero, one, parameterName));
 }