am 9b0109eb: am c7aa8fe6: Merge "Removing some more FloatMath references"

* commit '9b0109eb051fcf0a7ad801d03e73aa4e0bf2d7a7':
  Removing some more FloatMath references
This commit is contained in:
Neil Fuller
2014-10-17 14:59:48 +00:00
committed by Android Git Automerger
2 changed files with 4 additions and 5 deletions

View File

@@ -69,7 +69,7 @@ public class GestureStroke {
bx.bottom = p.y;
len = 0;
} else {
len += Math.hypot(p.x - tmpPoints[(i - 1) * 2], p.y - tmpPoints[(i -1 ) * 2 + 1]);
len += Math.hypot(p.x - tmpPoints[(i - 1) * 2], p.y - tmpPoints[(i -1) * 2 + 1]);
bx.union(p.x, p.y);
}
index++;