blob: dc70eea72d9efc22e6258f4a86db79e7628feea5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
package io.polyfrost.oneconfig.utils;
public class MathUtils {
public static float clamp(float number) {
return number < (float) 0.0 ? (float) 0.0 : Math.min(number, (float) 1.0);
}
public static float easeOut(float current, float goal, float speed) {
if (Math.floor(Math.abs(goal - current) / (float) 0.01) > 0) {
return current + (goal - current) / speed;
} else {
return goal;
}
}
public static float easeInQuad(float current) {
return current * current;
}
/** taken from <a href="https://github.com/jesusgollonet/processing-penner-easing">https://github.com/jesusgollonet/processing-penner-easing</a> */
public static float easeInOutCirc(float t, float b, float c, float d) {
if ((t /= d / 2) < 1) return -c / 2 * ((float) Math.sqrt(1 - t * t) - 1) + b;
return c / 2 * ((float) Math.sqrt(1 - (t -= 2) * t) + 1) + b;
}
}
|