script/record_mic/com/eclecticdesignstudio/motion/easing/Expo.as
changeset 11 6cab7e0b1678
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/script/record_mic/com/eclecticdesignstudio/motion/easing/Expo.as	Wed Jun 06 18:31:09 2012 +0200
@@ -0,0 +1,24 @@
+package com.eclecticdesignstudio.motion.easing {
+	
+	
+	import com.eclecticdesignstudio.motion.easing.equations.ExpoEaseIn;
+	import com.eclecticdesignstudio.motion.easing.equations.ExpoEaseInOut;
+	import com.eclecticdesignstudio.motion.easing.equations.ExpoEaseOut;
+	
+	
+	/**
+	 * @author Joshua Granick
+	 * @author Robert Penner / http://www.robertpenner.com/easing_terms_of_use.html
+	 */
+	final public class Expo {
+		
+		
+		static public function get easeIn ():IEasing { return new ExpoEaseIn (); }
+		static public function get easeOut ():IEasing { return new ExpoEaseOut (); }
+		static public function get easeInOut ():IEasing { return new ExpoEaseInOut (); }
+		
+		
+	}
+	
+
+}
\ No newline at end of file