HomeSort by relevance Sort by last modified time
    Searched defs:mPhysicalCoeff (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/java/android/widget/
Scroller.java 112 private float mPhysicalCoeff;
180 mPhysicalCoeff = computeDeceleration(0.84f); // look and feel tuning
475 return Math.log(INFLEXION * Math.abs(velocity) / (mFlingFriction * mPhysicalCoeff));
487 return mFlingFriction * mPhysicalCoeff * Math.exp(DECELERATION_RATE / decelMinusOne * l);
OverScroller.java 587 private float mPhysicalCoeff;
644 mPhysicalCoeff = SensorManager.GRAVITY_EARTH // g (m/s^2)
783 return Math.log(INFLEXION * Math.abs(velocity) / (mFlingFriction * mPhysicalCoeff));
789 return mFlingFriction * mPhysicalCoeff * Math.exp(DECELERATION_RATE / decelMinusOne * l);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherScroller.java 80 private float mPhysicalCoeff;
158 mPhysicalCoeff = computeDeceleration(0.84f); // look and feel tuning
459 return Math.log(INFLEXION * Math.abs(velocity) / (mFlingFriction * mPhysicalCoeff));
471 return mFlingFriction * mPhysicalCoeff * Math.exp(DECELERATION_RATE / decelMinusOne * l);

Completed in 208 milliseconds