| author | ymh <ymh.work@gmail.com> |
| Mon, 29 Jul 2024 23:18:55 +0200 | |
| changeset 131 | 2a18dfe8bfc0 |
| 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 (); } } }