Lines Matching refs:xPoints
659 * @param xPoints an array of <i>x</i> points
665 public void drawPolyline(int xPoints[], int yPoints[],
667 mGraphics.drawPolyline(xPoints, yPoints, nPoints);
678 * <code>(xPoints[i - 1], yPoints[i - 1])</code>
679 * to <code>(xPoints[i], yPoints[i])</code>, for
683 * @param xPoints a an array of <code>x</code> coordinates.
690 public void drawPolygon(int xPoints[], int yPoints[],
692 mGraphics.drawPolygon(xPoints, yPoints, nPoints);
702 * <code>(xPoints[i - 1], yPoints[i - 1])</code>
703 * to <code>(xPoints[i], yPoints[i])</code>, for
710 * @param xPoints a an array of <code>x</code> coordinates.
716 public void fillPolygon(int xPoints[], int yPoints[],
718 mGraphics.fillPolygon(xPoints, yPoints, nPoints);