Draw Polygon : Polygon « 2D Graphics « Java Tutorial






Draw Polygon
import java.awt.Graphics;

import javax.swing.JComponent;
import javax.swing.JFrame;

class MyCanvas extends JComponent {

  public void paint(Graphics g) {
    int[] x = new int[]{100,200,300,400};
    int[] y = new int[]{400,300,300,100};
    g.drawPolygon (x, y, x.length);    
  }
}

public class DrawPolygon {
  public static void main(String[] a) {
    JFrame window = new JFrame();
    window.setBounds(30, 30, 300, 300);
    window.getContentPane().add(new MyCanvas());
    window.setVisible(true);
  }
}








16.14.Polygon
16.14.1.Draw PolygonDraw Polygon
16.14.2.Tests two polygons for equality. If both are null this method returns true.