//File:	Circles.java
import java.awt.*;	//This is where the Color class is stored.
import CSLib.*;		//This is where the DrawingBox class is stored.
public class Circles
{
	public static void main (String [] args)
	{
		DrawingBox box = new DrawingBox ("This is fun!");
		
		box.drawCircle (100, 100, 50);
		box.fillCircle (200, 100, 25);
		
		box.setColor (Color.RED);
		box.fillCircle (250, 200, 50);
	}
}
