--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/script/record_mic/com/eclecticdesignstudio/motion/easing/Cubic.as Wed Jun 06 18:31:09 2012 +0200
@@ -0,0 +1,25 @@
+package com.eclecticdesignstudio.motion.easing {
+
+
+ import com.eclecticdesignstudio.motion.easing.equations.CubicEaseIn;
+ import com.eclecticdesignstudio.motion.easing.equations.CubicEaseInOut;
+ import com.eclecticdesignstudio.motion.easing.equations.CubicEaseOut;
+
+
+ /**
+ * @author Joshua Granick
+ * @author Philippe / http://philippe.elsass.me
+ * @author Robert Penner / http://www.robertpenner.com/easing_terms_of_use.html
+ */
+ final public class Cubic {
+
+
+ static public function get easeIn ():IEasing { return new CubicEaseIn (); }
+ static public function get easeOut ():IEasing { return new CubicEaseOut (); }
+ static public function get easeInOut ():IEasing { return new CubicEaseInOut (); }
+
+
+ }
+
+
+}
\ No newline at end of file