script/record_mic/com/eclecticdesignstudio/motion/easing/Linear.as
author cavaliet
Wed, 06 Jun 2012 18:31:09 +0200
changeset 11 6cab7e0b1678
permissions -rw-r--r--
flash : update recorder with size and tween.
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.LinearEaseNone;
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
     5
	
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
     6
	
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
	 * @author Joshua Granick
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
     9
	 * @author Philippe / http://philippe.elsass.me
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    10
	 * @author Robert Penner / http://www.robertpenner.com/easing_terms_of_use.html
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    11
	 */
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    12
	final public class Linear {
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
		
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    15
		static public function get easeNone ():IEasing { return new LinearEaseNone (); }
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
		
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    18
	}
6cab7e0b1678 flash : update recorder with size and tween.
cavaliet
parents:
diff changeset
    19
	
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
}