Shapes in Java and LOGO


Filled circles are pretty easy in Java. In fact, this is all you have to do is place the following line in your paint method:
  g.fillOval(10,10,80,80);
The first two numbers designate the upper-left corner of the bounding rectangle in which the oval is to drawn and the next two numbers designate the width and the height of that rectangle. You can experiment with this command to see how it is used in an applet. Make sure you play around with the numbers. See if you can make an ellipse.

ASSIGNMENT: Create the following shape as an applet and as a LOGO design. Display both on a web page along with the code to create each (displayed in two separate textareas).