public final class BakedBezierInterpolator extends Object implements android.view.animation.Interpolator
A pre-baked bezier-curved interpolator for indeterminate progress animations.
Fields Summary
private static final BakedBezierInterpolator
INSTANCE
private static final float[]
VALUES
Lookup table values.
Generated using a Bezier curve from (0,0) to (1,1) with control points:
P0 (0,0)
P1 (0.4, 0)
P2 (0.2, 1.0)
P3 (1.0, 1.0)
Values sampled with x at regular intervals between 0 and 1.