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

* commit '3b96bfb1034433fde57239de036eaa96be107f04':
  Removing some more FloatMath references
This commit is contained in:
Neil Fuller
2014-10-17 15:04:34 +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++;