Exemplo n.º 1
0
 /// <summary>
 /// Starts with multiple swings back and forth and ends with multiple swings back and forth with really fast
 /// transition through the middle.
 /// </summary>
 /// <param name="t">Time in the value between 0 and duration (inclusive)</param>
 /// <param name="from">Starting value from the ease</param>
 /// <param name="to">Target value to ease</param>
 /// <param name="duration">Duration of the ease</param>
 /// <returns>Eased value</returns>
 public static double ElasticInOut(double t, double from, double to, double duration)
 {
     return(from + (to - from) * Easings.ElasticInOut(t / duration));
 }