Home
last modified time | relevance | path

Searched refs:velocityFactor (Results 1 – 1 of 1) sorted by relevance

/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/animation/
H A DFlingAnimationUtils.java169 float velocityFactor = mSpeedUpFactor == 0.0f in getProperties() local
172 mY2 / mLinearOutSlowInX2, velocityFactor); in getProperties()
174 Interpolator slowInInterpolator = getInterpolator(startGradient, velocityFactor); in getProperties()
196 private Interpolator getInterpolator(float startGradient, float velocityFactor) { in getInterpolator() argument
197 if (Float.isNaN(velocityFactor)) { in getInterpolator()
202 || velocityFactor != mCachedVelocityFactor) { in getInterpolator()
203 float speedup = mSpeedUpFactor * (1.0f - velocityFactor); in getInterpolator()
215 mCachedVelocityFactor = velocityFactor; in getInterpolator()