284 285 286
# File 'lib/tween.rb', line 284 def self.ease(t, st, ch, d) ch * ((t = t / d.to_f - 1) * t * t *t * t + 1) + st end