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