Home | History | Annotate | Download | only in common

Lines Matching defs:mVelocity

553         private int mVelocity;
696 mVelocity = 0;
723 mVelocity = 0;
746 mVelocity = -delta; // only sign is used
754 mCurrVelocity = mVelocity = velocity;
813 mVelocity = (int) (- mDeceleration * totalDuration);
857 // mStart, mVelocity and mStartTime were adjusted to their values when edge was reached.
858 float distance = mVelocity * mVelocity / (2.0f * Math.abs(mDeceleration));
859 final float sign = Math.signum(mVelocity);
863 mDeceleration = - sign * mVelocity * mVelocity / (2.0f * mOver);
869 mFinal = mStart + (int) (mVelocity > 0 ? distance : -distance);
870 mDuration = - (int) (1000.0f * mVelocity / mDeceleration);
881 mVelocity = (int) mCurrVelocity;
882 mDeceleration = getDeceleration(mVelocity);
938 mCurrVelocity = mVelocity + mDeceleration * t;
939 distance = mVelocity * t + mDeceleration * t * t / 2.0f;
946 final float sign = Math.signum(mVelocity);