Home
last modified time | relevance | path

Searched refs:tmpPoints (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/java/android/gesture/
DGestureStroke.java51 final float[] tmpPoints = new float[count * 2]; in GestureStroke() local
60 tmpPoints[i * 2] = p.x; in GestureStroke()
61 tmpPoints[i * 2 + 1] = p.y; in GestureStroke()
72 len += Math.sqrt(Math.pow(p.x - tmpPoints[(i - 1) * 2], 2) in GestureStroke()
73 + Math.pow(p.y - tmpPoints[(i -1 ) * 2 + 1], 2)); in GestureStroke()
80 this.points = tmpPoints; in GestureStroke()