Lines Matching refs:xPoints
646 * @param xPoints an array of <i>x</i> points
652 public void drawPolyline(int xPoints[], int yPoints[],
654 g.drawPolyline(xPoints, yPoints, nPoints);
665 * <code>(xPoints[i - 1], yPoints[i - 1])</code>
666 * to <code>(xPoints[i], yPoints[i])</code>, for
670 * @param xPoints a an array of <code>x</code> coordinates.
676 public void drawPolygon(int xPoints[], int yPoints[],
678 g.drawPolygon(xPoints, yPoints, nPoints);
699 * <code>(xPoints[i - 1], yPoints[i - 1])</code>
700 * to <code>(xPoints[i], yPoints[i])</code>, for
707 * @param xPoints a an array of <code>x</code> coordinates.
712 public void fillPolygon(int xPoints[], int yPoints[],
714 g.fillPolygon(xPoints, yPoints, nPoints);