I draw a triangle using line. How can I fill color on it? So far I can only success color the line but not fill the color.
public void paintComponent(Graphic
public void paintComponent(Graphics g){ super.paintComponents(g); int x[] = {1,2,3}; int y[] = {4,5,6}; int npoints = x.length;//or y.length g.drawPolygon(x, y, npoints);//draws polygon outline g.fillPolygon(x, y, npoints);//paints a polygon }