| author | cavaliet |
| Wed, 06 Jun 2012 18:31:09 +0200 | |
| changeset 11 | 6cab7e0b1678 |
| permissions | -rw-r--r-- |
| 11 | 1 |
package com.eclecticdesignstudio.motion.easing { |
2 |
|
|
3 |
|
|
4 |
import com.eclecticdesignstudio.motion.easing.equations.LinearEaseNone; |
|
5 |
|
|
6 |
|
|
7 |
/** |
|
8 |
* @author Joshua Granick |
|
9 |
* @author Philippe / http://philippe.elsass.me |
|
10 |
* @author Robert Penner / http://www.robertpenner.com/easing_terms_of_use.html |
|
11 |
*/ |
|
12 |
final public class Linear { |
|
13 |
|
|
14 |
|
|
15 |
static public function get easeNone ():IEasing { return new LinearEaseNone (); } |
|
16 |
|
|
17 |
|
|
18 |
} |
|
19 |
|
|
20 |
||
21 |
} |