Whitespace fix

Change-Id: Ia6b328defddc002ea0acb028d452bdd97ed3d4cc
This commit is contained in:
Adam Cohen 2010-11-15 11:30:05 -08:00
parent cbbaf9862a
commit eed565d512
1 changed files with 2 additions and 2 deletions

View File

@ -883,8 +883,8 @@ public class Workspace extends SmoothPagedView
private class ZInterpolator implements TimeInterpolator {
private final float focalLength = 0.2f;
public float getInterpolation(float input) {
return (1.0f - focalLength / (focalLength + input)) /
public float getInterpolation(float input) {
return (1.0f - focalLength / (focalLength + input)) /
(1.0f - focalLength / (focalLength + 1.0f));
}
}