topical media & game development

talk show tell print

#graphic-flex-image-effects-07-source-aeon-easing-Quad.ax

#graphic-flex-image-effects-07-source-aeon-easing-Quad.ax [swf] [flash] flex


  package aeon.easing {
  
          public class @ax-graphic-flex-image-effects-07-source-aeon-easing-Quad {
  
                  static public function easeIn(t:Number, b:Number, c:Number, d:Number):Number {
                          return c*(t/=d)*t + b;
                  }
                  
                  static public function easeOut(t:Number, b:Number, c:Number, d:Number):Number {
                          return -c *(t/=d)*(t-2) + b;
                  }
                  
                  static public function easeInOut(t:Number, b:Number, c:Number, d:Number):Number {
                          if ((t/=d/2) < 1) return c/2*t*t + b;
                          return -c/2 * ((--t)*(t-2) - 1) + b;
                  }
                  
          }
  
  }


(C) Æliens 04/09/2009

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.