// Andrew Hoffmann
public class Circle3
{
	private String color; // Value for the color
	private String fill; // Fill value
	private double radius; // Value for the radius
	final private double PI = 3.14159; // Sets the value of PI


	// Three Arg Constructor

	public Circle3(double radiusIn, String colorIn, String fillIn)
	{
		radius = radiusIn;
		color = colorIn;
		fill = fillIn;


	}
	// No Arg Constructor

			public Circle3()
			{
				radius = 1.0;
				color = "BLACK";
				fill = "WHITE";


			}


	// Sets Radius of the Circle

	public void setRadius(double radiusIn)
	{
		radius = radiusIn;
	}
   // Sets Color of the Circle

	public void setColor(String colorIn)
	{
		color = colorIn;
	}
	// Sets Fill of the Circle

	public void setFill(String fillIn)
	{
		fill = fillIn;
	}
	// Gets radius
	public double getRadius()
	{
		return radius;
	}
   // Gets Area
	public double getArea()
	{
		return PI * radius * radius;
	}
   // Gets Diameter
	public double getDiameter()
	{
		return radius * 2;
	}
   // Gets Circumference
   	public double getCircumference()
   	{
   		return 2 * radius * PI;
	}
	// Gets Color
	public String getColor()
	{
		return color;
	}
	// Gets Fill
		public String getFill()
		{
			return fill;
	}

}