Home
last modified time | relevance | path

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

/development/samples/ApiDemos/src/com/example/android/apis/graphics/
DMeasureText.java83 float[] pts = new float[2 + count*2]; in showText() local
86 pts[0] = x; in showText()
87 pts[1] = y; in showText()
90 pts[2 + i*2] = x; in showText()
91 pts[2 + i*2 + 1] = y; in showText()
97 canvas.drawPoints(pts, 0, (count + 1) << 1, mPaint); in showText()