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

/frameworks/base/core/java/android/widget/
H A DScroller.java112 private float mPhysicalCoeff; field in class:Scroller
186 mPhysicalCoeff = computeDeceleration(0.84f); // look and feel tuning
487 return Math.log(INFLEXION * Math.abs(velocity) / (mFlingFriction * mPhysicalCoeff));
499 return mFlingFriction * mPhysicalCoeff * Math.exp(DECELERATION_RATE / decelMinusOne * l);
H A DOverScroller.java587 private float mPhysicalCoeff; field in class:OverScroller.SplineOverScroller
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);

Completed in 80 milliseconds