Java Swing Tutorial - Java Graphics.drawArc(int x, int y, int width, int height, int startAngle, int arcAngle)








Syntax

Graphics.drawArc(int x, int y, int width, int height, int startAngle, int arcAngle) has the following syntax.

public abstract void drawArc(int x,  int y,  int width,  int height,  int startAngle,  int arcAngle)

Example

In the following code shows how to use Graphics.drawArc(int x, int y, int width, int height, int startAngle, int arcAngle) method.

/*w  w w  . ja va2s . c om*/
import java.awt.Color;
import java.awt.Graphics;

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

public class Main extends JPanel {

  public void paint(Graphics g) {
    g.drawArc(25, 25, 120, 120, 45, 270);
  }

  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);
  }
}