script/record_mic/com/eclecticdesignstudio/motion/easing/IEasing.as
changeset 11 6cab7e0b1678
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/script/record_mic/com/eclecticdesignstudio/motion/easing/IEasing.as	Wed Jun 06 18:31:09 2012 +0200
@@ -0,0 +1,18 @@
+package com.eclecticdesignstudio.motion.easing {
+	
+	
+	/**
+	 * @author Joshua Granick
+	 * @author Philippe / http://philippe.elsass.me
+	 */
+	public interface IEasing {
+		
+		
+		function calculate (k:Number):Number;
+		function ease (t:Number, b:Number, c:Number, d:Number):Number;
+		
+		
+	}
+	
+	
+}
\ No newline at end of file