Fill an arc outline : Arc « 2D Graphics GUI « Java






Fill an arc outline

  
import java.awt.Color;
import java.awt.Graphics;

import javax.swing.JFrame;
import javax.swing.JPanel;

public class MainClass extends JPanel {

  public static void main(String[] a) {
    JFrame f = new JFrame();
    f.setSize(400, 400);
    f.add(new MainClass());
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.setVisible(true);
  }

  public void paint(Graphics g) {
    g.setColor (Color.yellow);  
    g.fillArc (5, 15, 50, 75, 25, 165); 
  }
}

   
  








Related examples in the same category

1.Draw draw an arc outline
2.Arc2D.Float: Arc2D.OPEN
3.Arc2D.CHORD
4.Arc2D.PIE
5.Compares two arcs and returns true if they are equal or both null.