Lines Matching refs:xPoints
452 * @param xPoints an array of <i>x</i> points
458 public void drawPolyline(int xPoints[], int yPoints[],
466 fromX = xPoints[0];
469 toX = xPoints[i];
488 * <code>(xPoints[i - 1], yPoints[i - 1])</code>
489 * to <code>(xPoints[i], yPoints[i])</code>, for
493 * @param xPoints a an array of <code>x</code> coordinates.
499 public void drawPolygon(int xPoints[], int yPoints[],
502 draw(new Polygon(xPoints, yPoints, nPoints));
523 * <code>(xPoints[i - 1], yPoints[i - 1])</code>
524 * to <code>(xPoints[i], yPoints[i])</code>, for
531 * @param xPoints a an array of <code>x</code> coordinates.
536 public void fillPolygon(int xPoints[], int yPoints[],
539 fill(new Polygon(xPoints, yPoints, nPoints));