Tuesday, 9 June 2015

An applet program to draw circle in center of the canvas


Code for An applet program to draw circle in center of the canvas in Java



 



 



 
 import java.awt.*;
 import java.applet.*;

 publicclass centerCircle extends Applet
 {
      publicvoid paint(Graphics g){
           Dimension d = getSize();
           int x = d.width/2;
           int y = d.height/2;
           int radius = (int) ((d.width < d.height) ? 0.4 * d.width : 0.4 * d.height);
           g.setColor(Color.cyan);
           g.fillOval(x-radius, y-radius, 2*radius, 2*radius);
           g.setColor(Color.red);
           g.drawString("Width   = "+d.width,10,10);
           g.drawString("Height = "+d.height,10,20);
        }
 }

No comments:

Post a Comment