|
11
|
1 |
package com.eclecticdesignstudio.motion.easing { |
|
|
2 |
|
|
|
3 |
|
|
|
4 |
import com.eclecticdesignstudio.motion.easing.equations.QuintEaseIn; |
|
|
5 |
import com.eclecticdesignstudio.motion.easing.equations.QuintEaseInOut; |
|
|
6 |
import com.eclecticdesignstudio.motion.easing.equations.QuintEaseOut; |
|
|
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 Quint { |
|
|
15 |
|
|
|
16 |
|
|
|
17 |
static public function get easeIn ():IEasing { return new QuintEaseIn (); } |
|
|
18 |
static public function get easeOut ():IEasing { return new QuintEaseOut (); } |
|
|
19 |
static public function get easeInOut ():IEasing { return new QuintEaseInOut (); } |
|
|
20 |
|
|
|
21 |
|
|
|
22 |
} |
|
|
23 |
|
|
|
24 |
} |