Draw an Arc with drawArc in Java
Description
The following code shows how to draw an Arc with drawArc.
Example
import java.awt.Graphics;
//from ww w.ja v a2 s . com
import javax.swing.JComponent;
import javax.swing.JFrame;
class MyCanvas extends JComponent {
public void paint(Graphics g) {
g.drawArc (10, 10, 200, 200,50,50);
}
}
public class Main {
public static void main(String[] a) {
JFrame window = new JFrame();
window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
window.setBounds(30, 30, 450, 450);
window.getContentPane().add(new MyCanvas());
window.setVisible(true);
}
}
The code above generates the following result.