Lines Matching refs:xPoints
186 final int[] xPoints, final int[] yPoints,
189 if (xPoints == null || yPoints == null) {
192 if (xPoints.length < nPoints || yPoints.length < nPoints) {
201 drawLine(sg2d, xPoints[0], yPoints[0], xPoints[1], yPoints[1]);
224 buf.put(xPoints, 0, nPoints);
231 drawPoly(xPoints, yPoints,
242 protected abstract void drawPoly(int[] xPoints, int[] yPoints,
247 int[] xPoints, int[] yPoints,
250 drawPoly(sg2d, xPoints, yPoints, nPoints, false);
254 int[] xPoints, int[] yPoints,
257 drawPoly(sg2d, xPoints, yPoints, nPoints, true);
261 int[] xPoints, int[] yPoints,
264 fill(sg2d, new Polygon(xPoints, yPoints, nPoints));