script/record_mic/com/eclecticdesignstudio/motion/easing/Quint.as
author ymh <ymh.work@gmail.com>
Mon, 29 Jul 2024 23:18:55 +0200
changeset 131 2a18dfe8bfc0
parent 11 6cab7e0b1678
permissions -rw-r--r--
last change before install
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
11
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
     1
package com.eclecticdesignstudio.motion.easing {
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
     2
	
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
     3
	
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
     4
	import com.eclecticdesignstudio.motion.easing.equations.QuintEaseIn;
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
     5
	import com.eclecticdesignstudio.motion.easing.equations.QuintEaseInOut;
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
     6
	import com.eclecticdesignstudio.motion.easing.equations.QuintEaseOut;
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
     7
	
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
     8
	
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
     9
	/**
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    10
	 * @author Joshua Granick
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    11
	 * @author Philippe / http://philippe.elsass.me
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    12
	 * @author Robert Penner / http://www.robertpenner.com/easing_terms_of_use.html
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    13
	 */
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    14
	final public class Quint {
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    15
		
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    16
		
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    17
		static public function get easeIn ():IEasing { return new QuintEaseIn (); }
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    18
		static public function get easeOut ():IEasing { return new QuintEaseOut (); }
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    19
		static public function get easeInOut ():IEasing { return new QuintEaseInOut (); }
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    20
		
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    21
		
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    22
	}
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    23
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    24
}