public static IFluentAnimate Linear(double duration, Action action) { IFluentAnimate animator = new FluentAnimate(); animator.EaseIn(duration, action); return(animator); }
public static IFluentAnimate EaseInOut(double duration, Action action) { IFluentAnimate animator = new FluentAnimate(); animator.EaseIn(duration, action); return animator; }