Last active
February 28, 2025 17:29
-
-
Save dev-hydrogen/21a66f83f0386123e0c0acf107254843 to your computer and use it in GitHub Desktop.
Various Easings in java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.function.Function; | |
import static java.lang.Math.*; | |
// https://easings.net/ | |
// https://gist.github.com/dev-hydrogen/21a66f83f0386123e0c0acf107254843 | |
public enum Easing { | |
easeInSine(x -> 1 - cos(x * PI) / 2), | |
easeOutSine(x -> sin(x * PI) / 2), | |
easeInOutSine(x -> -(cos(PI * x) - 1) / 2), | |
easeInQuad(x -> x * x), | |
easeOutQuad(x -> 1 - (1 - x) * (1 - x)), | |
easeInOutQuad(x -> x < 0.5 ? 2 * x * x : 1 - pow(-2 * x + 2, 2) / 2), | |
easeInCubic(x -> x * x * x), | |
easeOutCubic(x -> 1 - pow(1 - x, 3)), | |
easeInOutCubic(x -> x < 0.5 ? 4 * x * x * x : 1 - pow(-2 * x + 2, 3) / 2), | |
easeInQuart(x -> x * x * x * x), | |
easeOutQuart(x -> 1 - pow(1 - x, 4)), | |
easeInOutQuart(x -> x < 0.5 ? 8 * x * x * x * x : 1 - pow(-2 * x + 2, 4) / 2), | |
easeInQuint(x -> x * x * x * x * x), | |
easeOutQuint(x -> 1 - pow(1 - x, 5)), | |
easeInOutQuint(x -> x < 0.5 ? 16 * x * x * x * x * x : 1 - pow(-2 * x + 2, 5) / 2), | |
easeInExpo(x -> x == 0 ? 0 : pow(2, 10 * x - 10)), | |
easeOutExpo(x -> x == 1 ? 1 : 1 - pow(2, -10 * x)), | |
easeInOutExpo(x -> x == 0 ? 0 : x == 1 ? 1 : x < 0.5 ? pow(2, 20 * x - 10) / 2 : (2 - pow(2, -20 * x + 10)) / 2), | |
easeInCirc(x -> 1 - sqrt(1 - pow(x, 2))), | |
easeOutCirc(x -> sqrt(1 - pow(x - 1, 2))), | |
easeInOutCirc(x -> x < 0.5 ? (1 - sqrt(1 - pow(2 * x, 2))) / 2 : (sqrt(1 - pow(-2 * x + 2, 2)) + 1) / 2), | |
easeInBack(x -> 2.70158 * x * x * x - 1.70158 * x * x), | |
easeOutBack(x -> 1 + 2.70158 * pow(x - 1, 3) + 1.70158 * pow(x - 1, 2)), | |
easeInOutBack(x -> x < 0.5 ? (pow(2 * x, 2) * ((1.70158 * 1.525 + 1) * 2 * x - 1.70158 * 1.525)) / 2 : (pow(2 * x - 2, 2) * ((1.70158 * 1.525 + 1) * (x * 2 - 2) + 1.70158 * 1.525) + 2) / 2), | |
easeInElastic(x -> x == 0 ? 0 : x == 1 ? 1 : -pow(2, 10 * x - 10) * sin((x * 10 - 10.75) * ((2 * PI) / 3))), | |
easeOutElastic(x -> x == 0 ? 0 : x == 1 ? 1 : pow(2, -10 * x) * sin((x * 10 - 0.75) * ((2 * PI) / 3)) + 1), | |
easeInOutElastic(x -> x == 0 ? 0 : x == 1 ? 1 : x < 0.5 ? -(pow(2, 20 * x - 10) * sin((20 * x - 11.125) * ((2 * PI) / 4.5))) / 2 : (pow(2, -20 * x + 10) * sin((20 * x - 11.125) * ((2 * PI) / 4.5))) / 2 + 1); | |
Function<Double, Number> function; | |
Easing(Function<Double, Number> function) { | |
this.function = function; | |
} | |
public Function<Double, Number> getFunction() { | |
return function; | |
} | |
} |
Awesome
incredible
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
beautiful