Back to project page TileView.
The source code is released under:
MIT License
If you think the Android project TileView listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.qozix.animation.easing; //w ww. j a v a2 s . c om public abstract class Strong extends EasingEquation { public static final Strong EaseNone = new Strong(){ }; public static final Strong EaseIn = new Strong(){ @Override public double compute(double t, double b, double c, double d){ return c * Math.pow(t / d, 5) + b; } }; public static final Strong EaseOut = new Strong(){ @Override public double compute(double t, double b, double c, double d){ return c * ( 1 - Math.pow( 1 - ( t / d), 5) ) + b; } }; }