Home | History | Annotate | Download | only in widget

Lines Matching defs:mDeceleration

557         private float mDeceleration;
690 mDeceleration = 0.0f;
739 mDeceleration = getDeceleration(delta);
743 mDuration = (int) (1000.0 * Math.sqrt(-2.0 * delta / mDeceleration));
801 final float durationToApex = - velocity / mDeceleration;
804 final float distanceToApex = velocitySquared / 2.0f / Math.abs(mDeceleration);
807 2.0 * (distanceToApex + distanceToEdge) / Math.abs(mDeceleration));
810 mVelocity = (int) (- mDeceleration * totalDuration);
814 mDeceleration = getDeceleration(velocity == 0 ? start - end : velocity);
857 float distance = velocitySquared / (2.0f * Math.abs(mDeceleration));
862 mDeceleration = - sign * velocitySquared / (2.0f * mOver);
869 mDuration = - (int) (1000.0f * mVelocity / mDeceleration);
881 mDeceleration = getDeceleration(mVelocity);
941 mCurrVelocity = mVelocity + mDeceleration * t;
942 distance = mVelocity * t + mDeceleration * t * t / 2.0f;