|
11
|
1 |
package com.eclecticdesignstudio.motion.easing { |
|
|
2 |
|
|
|
3 |
|
|
|
4 |
import com.eclecticdesignstudio.motion.easing.equations.ExpoEaseIn; |
|
|
5 |
import com.eclecticdesignstudio.motion.easing.equations.ExpoEaseInOut; |
|
|
6 |
import com.eclecticdesignstudio.motion.easing.equations.ExpoEaseOut; |
|
|
7 |
|
|
|
8 |
|
|
|
9 |
/** |
|
|
10 |
* @author Joshua Granick |
|
|
11 |
* @author Robert Penner / http://www.robertpenner.com/easing_terms_of_use.html |
|
|
12 |
*/ |
|
|
13 |
final public class Expo { |
|
|
14 |
|
|
|
15 |
|
|
|
16 |
static public function get easeIn ():IEasing { return new ExpoEaseIn (); } |
|
|
17 |
static public function get easeOut ():IEasing { return new ExpoEaseOut (); } |
|
|
18 |
static public function get easeInOut ():IEasing { return new ExpoEaseInOut (); } |
|
|
19 |
|
|
|
20 |
|
|
|
21 |
} |
|
|
22 |
|
|
|
23 |
|
|
|
24 |
} |