summaryrefslogtreecommitdiff
path: root/org.fox.ttcomics/src/main/java/it/sephiroth/android/library/imagezoom/easing/Easing.java
blob: 202e9d9587ecb4ea27baf7000d2f78812149cf47 (plain)
1
2
3
4
5
6
7
8
9
10
package it.sephiroth.android.library.imagezoom.easing;

public interface Easing {

	double easeOut( double time, double start, double end, double duration );

	double easeIn( double time, double start, double end, double duration );

	double easeInOut( double time, double start, double end, double duration );
}