Xamarin.Motion.Animation.Animation C# (CSharp) Method

Animation() public method

public Animation ( Action callback, double start = 0.0f, double end = 1.0f, double>.Func easing = null, System.Action finished = null ) : System
callback Action
start double
end double
easing double>.Func
finished System.Action
return System
        public Animation(Action<double> callback, double start = 0.0f, double end = 1.0f, Func<double, double> easing = null, Action finished = null)
        {
            children = new List<Animation> ();
            this.easing = easing ?? Xamarin.Motion.Easing.Linear;
            this.finished = finished;

            var transform = AnimationExtensions.Interpolate (start, end);
            step = f => callback (transform (f));
        }

Same methods

Animation::Animation ( ) : System