diff -r 4763bcd087a2 -r 6cab7e0b1678 script/record_mic/com/eclecticdesignstudio/motion/easing/Linear.as --- /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