hiya,
just like to get some information on drawing circles.
the output from the code below displays a circle but the lines are broken.
thanks
import java.awt.*; import javax.swing.*; import java.applet.*; public class Circles extends JApplet { public void init() { } public void paint(Graphics g) { g.drawOval(10, 10, 100, 100); } }