Searched refs:bounce (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/view/animation/
H A DBounceInterpolator.java34 private static float bounce(float t) { method in class:BounceInterpolator
46 if (t < 0.3535f) return bounce(t);
47 else if (t < 0.7408f) return bounce(t - 0.54719f) + 0.7f;
48 else if (t < 0.9644f) return bounce(t - 0.8526f) + 0.9f;
49 else return bounce(t - 1.0435f) + 0.95f;

Completed in 47 milliseconds