| author | ymh <ymh.work@gmail.com> |
| Thu, 07 Jun 2012 18:27:36 +0200 | |
| changeset 29 | d733ad1f2654 |
| parent 11 | 6cab7e0b1678 |
| permissions | -rw-r--r-- |
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 (); } } }