script/record_mic/com/eclecticdesignstudio/motion/easing/Expo.as
author ymh <ymh.work@gmail.com>
Thu, 07 Jun 2012 18:27:36 +0200
changeset 29 d733ad1f2654
parent 11 6cab7e0b1678
permissions -rw-r--r--
better localize thumnail generation
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
11
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
     1
package com.eclecticdesignstudio.motion.easing {
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
     2
	
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
     3
	
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
     4
	import com.eclecticdesignstudio.motion.easing.equations.ExpoEaseIn;
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
     5
	import com.eclecticdesignstudio.motion.easing.equations.ExpoEaseInOut;
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
     6
	import com.eclecticdesignstudio.motion.easing.equations.ExpoEaseOut;
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
     7
	
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
     8
	
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
     9
	/**
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    10
	 * @author Joshua Granick
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    11
	 * @author Robert Penner / http://www.robertpenner.com/easing_terms_of_use.html
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    12
	 */
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    13
	final public class Expo {
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    14
		
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    15
		
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    16
		static public function get easeIn ():IEasing { return new ExpoEaseIn (); }
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    17
		static public function get easeOut ():IEasing { return new ExpoEaseOut (); }
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    18
		static public function get easeInOut ():IEasing { return new ExpoEaseInOut (); }
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    19
		
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    20
		
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    21
	}
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    22
	
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    23
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    24
}