Package com.formdev.flatlaf.util
Interface Animator.Interpolator
-
- All Known Implementing Classes:
CubicBezierEasing
- Enclosing class:
- Animator
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface Animator.Interpolator
Interpolator used by animation to change timing fraction. E.g. for easing.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description float
interpolate(float fraction)
Interpolate the given fraction and returns a new fraction.
-