blob: 14e802ff95f7a8df3f352750f8d63d044a45ec2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package cc.polyfrost.oneconfig.gui.animations;
public class EaseInOutQuad extends Animation{
/**
* @param duration The duration of the animation
* @param start The start of the animation
* @param end The end of the animation
* @param reverse Reverse the animation
*/
public EaseInOutQuad(int duration, float start, float end, boolean reverse) {
super(duration, start, end, reverse);
}
/**
* Adapted from <a href="https://github.com/jesusgollonet/processing-penner-easing">https://github.com/jesusgollonet/processing-penner-easing</a>
*/
@Override
protected float animate(long timePassed, int duration, float start, float change) {
if ((timePassed /= duration / 2) < 1) return change / 2 * timePassed * timePassed + start;;
return -change / 2 * ((--timePassed) * (timePassed - 2) - 1) + start;
}
}
|