Searched defs:SPLINE_TIME (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DScroller.java106 private static final float[] SPLINE_TIME = new float[NB_SAMPLES + 1]; field in class:Scroller
142 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
144 SPLINE_POSITION[NB_SAMPLES] = SPLINE_TIME[NB_SAMPLES] = 1.0f;
H A DOverScroller.java598 private static final float[] SPLINE_TIME = new float[NB_SAMPLES + 1]; field in class:OverScroller.SplineOverScroller
632 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
634 SPLINE_POSITION[NB_SAMPLES] = SPLINE_TIME[NB_SAMPLES] = 1.0f;
673 final float t_inf = SPLINE_TIME[index];
674 final float t_sup = SPLINE_TIME[index + 1];

Completed in 199 milliseconds