topical media & game development
lib-flex-animation-code-10-gs-easing-Circ.ax
lib-flex-animation-code-10-gs-easing-Circ.ax
(swf
)
[ flash
]
flex
package gs.easing {
public class @ax-lib-flex-animation-code-10-gs-easing-Circ {
public static function easeIn (t:Number, b:Number, c:Number, d:Number):Number {
return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
}
public static function easeOut (t:Number, b:Number, c:Number, d:Number):Number {
return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
}
public static function easeInOut (t:Number, b:Number, c:Number, d:Number):Number {
if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
}
}
}
(C) Æliens
19/08/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.