Graphics.drawPolygon(int[] xPoints, int[] yPoints, int nPoints) has the following syntax.
public abstract void drawPolygon(int[] xPoints, int[] yPoints, int nPoints)
In the following code shows how to use Graphics.drawPolygon(int[] xPoints, int[] yPoints, int nPoints) method.
/*from ww w .j a va2 s . co m*/ import java.awt.Graphics; import javax.swing.JFrame; import javax.swing.JPanel; public class Main extends JPanel { public void paint(Graphics g) { int xpoints[] = {25, 145, 25, 145, 25}; int ypoints[] = {25, 25, 145, 145, 25}; int npoints = 5; g.drawPolygon(xpoints, ypoints, npoints); } public static void main(String[] args) { JFrame frame = new JFrame(); frame.add(new Main()); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setBounds(20,20, 500,500); frame.setVisible(true); } }