animatefx.animation.AnimateFXInterpolator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AnimateFX Show documentation
Show all versions of AnimateFX Show documentation
A library of ready-to-use animations for JavaFX
package animatefx.animation;
import javafx.animation.Interpolator;
public final class AnimateFXInterpolator {
private AnimateFXInterpolator() {
throw new IllegalStateException("AnimateFX Interpolator");
}
public static final Interpolator EASE = Interpolator.SPLINE(0.25, 0.1, 0.25, 1);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy