Lines Matching refs:sg
50 public void drawLine(SunGraphics2D sg,
52 outpipe.draw(sg, new Line2D.Float(x1, y1, x2, y2));
55 public void drawRect(SunGraphics2D sg,
57 outpipe.draw(sg, new Rectangle(x, y, w, h));
60 public void fillRect(SunGraphics2D sg,
62 outpipe.fill(sg, new Rectangle(x, y, w, h));
65 public void drawRoundRect(SunGraphics2D sg,
68 outpipe.draw(sg, new RoundRectangle2D.Float(x, y, w, h, aW, aH));
71 public void fillRoundRect(SunGraphics2D sg,
74 outpipe.fill(sg, new RoundRectangle2D.Float(x, y, w, h, aW, aH));
77 public void drawOval(SunGraphics2D sg,
79 outpipe.draw(sg, new Ellipse2D.Float(x, y, w, h));
82 public void fillOval(SunGraphics2D sg,
84 outpipe.fill(sg, new Ellipse2D.Float(x, y, w, h));
87 public void drawArc(SunGraphics2D sg,
90 outpipe.draw(sg, new Arc2D.Float(x, y, w, h,
94 public void fillArc(SunGraphics2D sg,
97 outpipe.fill(sg, new Arc2D.Float(x, y, w, h,
116 public void drawPolyline(SunGraphics2D sg,
119 outpipe.draw(sg, makePoly(xPoints, yPoints, nPoints, false));
122 public void drawPolygon(SunGraphics2D sg,
125 outpipe.draw(sg, makePoly(xPoints, yPoints, nPoints, true));
128 public void fillPolygon(SunGraphics2D sg,
131 outpipe.fill(sg, makePoly(xPoints, yPoints, nPoints, true));