Home
last modified time | relevance | path

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

/external/proguard/src/proguard/gui/splash/
DOverrideGraphics2D.java344 public void drawPolygon(int[] xPoints, int[] yPoints, int nPoints) in drawPolygon() argument
346 graphics.drawPolygon(xPoints, yPoints, nPoints); in drawPolygon()
354 public void drawPolyline(int[] xPoints, int[] yPoints, int nPoints) in drawPolyline() argument
356 graphics.drawPolyline(xPoints, yPoints, nPoints); in drawPolyline()
424 public void fillPolygon(int[] xPoints, int[] yPoints, int nPoints) in fillPolygon() argument
426 graphics.fillPolygon(xPoints, yPoints, nPoints); in fillPolygon()
/external/fonttools/Lib/fontTools/ttLib/tables/
D_g_l_y_f.py493 xPoints = []
512 xPoints.append(x)
515 xPoints.append(x)
546 xPoints = [int(round(x)) for x in xPoints]
547 yPoints = [int(round(y)) for y in xPoints]
548 data = data + struct.pack(*(xFormat,)+tuple(xPoints))