AnimationMean constructor

AnimationMean({Animation<double> left, Animation<double> right })

Creates an animation that tracks the mean of two other animations.

Implementation

AnimationMean({
  Animation<double> left,
  Animation<double> right,
}) : super(first: left, next: right);