Hi, I am trying to create a wheel that has 5 spokes. I am kind of new at Java and need some help completing this. So far I have:
import java.applet.Applet;
import java.awt.Graphics;
import javax.swing.JFrame;
public class DrawOval extends Applet
{
public void paint(Graphics g)
{
g.drawOval(10, 50, 200,
getSize() .height - 384);
getSize() .getWidth();
Thanks.