Java program to draw a Circle using Graphics2D class
Codeaft.java
import java.awt.*; import java.awt.event.*; import java.awt.geom.*; class Codeaft extends Frame { Shape circle=new Ellipse2D.Float(100.0f,100.0f,100.0f,100.0f); public void paint(Graphics g) { Graphics2D ga=(Graphics2D)g; ga.draw(circle); ga.setPaint(Color.blue); ga.fill(circle); } public static void main(String args[]) { Frame frame=new Codeaft(); frame.addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent we) { System.exit(0); } }); frame.setSize(300,300); frame.setVisible(true); } }
Output
codeaft@codeaft:~$ javac Codeaft.java
codeaft@codeaft:~$ java Codeaft![]()
Comments and Reactions