summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/SmoothPagedView.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/launcher3/SmoothPagedView.java')
-rw-r--r--src/com/android/launcher3/SmoothPagedView.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/com/android/launcher3/SmoothPagedView.java b/src/com/android/launcher3/SmoothPagedView.java
index a45dbbf6e..64dcb34ca 100644
--- a/src/com/android/launcher3/SmoothPagedView.java
+++ b/src/com/android/launcher3/SmoothPagedView.java
@@ -52,8 +52,6 @@ public abstract class SmoothPagedView extends PagedView {
}
public float getInterpolation(float t) {
- // _o(t) = t * t * ((tension + 1) * t + tension)
- // o(t) = _o(t - 1) + 1
t -= 1.0f;
return t * t * ((mTension + 1) * t + mTension) + 1.0f;
}