Applet Mini-Lab


Type in the HTML file, RectangleApplet.html, and the Java source file RectangleApplet.java.  Compile and run the applet to test it.

Modify the applet to draw a picture such as a square face.


RectangleApplet.html:

<html>
<head>
<title>Simple Applet</title>
<head>

<body>

<p>Here is a simple applet.</p>
<applet code="RectangleApplet.class" width="400" height="300">
</applet>

</body>
</html>

You may want to look at the class documentation for the Java Line2D, Rectangle2D, RoundRectangle2D, Ellipse2D, and Arc2D classes.

(OPTIONAL) When you are finished, if you would like to try another applet, you can look at the Balloon Race Applet.