Skip to content

Instantly share code, notes, and snippets.

@mrdoob
Created May 11, 2010 01:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrdoob/396792 to your computer and use it in GitHub Desktop.
Save mrdoob/396792 to your computer and use it in GitHub Desktop.
package aze.motion.easing
{
final public class Bounce
{
static public function easeIn(k:Number):Number
{
return 1 - Bounce.easeOut(1 - k);
}
static public function easeOut(k:Number):Number
{
if((k /= 1) < 0.363636364/*(1/2.75)*/)
{
return (7.5625 * k * k);
}
else if(k < 0.727272727/*(2/2.75)*/)
{
return (7.5625 * (k -= 0.545454545/*(1.5/2.75)*/) * k + .75);
}
else if(k < 0.909090909/*(2.5/2.75)*/)
{
return (7.5625 * (k -= 0.818181818/*(2.25/2.75)*/) * k + .9375);
}
else
{
return (7.5625 * (k -= 0.954545455/*(2.625/2.75)*/) * k + .984375);
}
}
static public function easeInOut(k:Number):Number
{
if(k < .5) return Bounce.easeIn(k * 2) * .5;
else return Bounce.easeOut(k * 2 - 1) * .5 + .5;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment