+ 1
How to draw a circle?I dont know the parameters.
Write code in java and run in Applet
2 Respuestas
+ 2
public void methodName(Graphics obj){
super.paintComponent(obj);
obj.fillOval(9,9,d,d);
}
9,9 is cordinate d is radius
+ 1
coordinate of circle center ?