Searched refs:mVelocityY (Results 1 - 2 of 2) sorted by relevance

/frameworks/ex/photoviewer/src/com/android/ex/photo/views/
H A DPhotoView.java1034 private float mVelocityY; field in class:PhotoView.TranslateRunnable
1054 mVelocityY = velocityY;
1079 final boolean didTranslate = mHeader.translate(mVelocityX * delta, mVelocityY * delta);
1094 if (mVelocityY > 0f) {
1095 mVelocityY -= slowDown;
1096 if (mVelocityY < 0f) {
1097 mVelocityY = 0f;
1100 mVelocityY += slowDown;
1101 if (mVelocityY > 0f) {
1102 mVelocityY
[all...]
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
H A DPhotoView.java1040 private float mVelocityY; field in class:PhotoView.TranslateRunnable
1060 mVelocityY = velocityY;
1085 final boolean didTranslate = mHeader.translate(mVelocityX * delta, mVelocityY * delta);
1100 if (mVelocityY > 0f) {
1101 mVelocityY -= slowDown;
1102 if (mVelocityY < 0f) {
1103 mVelocityY = 0f;
1106 mVelocityY += slowDown;
1107 if (mVelocityY > 0f) {
1108 mVelocityY
[all...]

Completed in 38 milliseconds