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