/************************************************
* 	Eddie Corrales 		Prof.Bam				*
*	Circle Class 								*
*					      					  	*
*************************************************/

public class Circle3
{
	private double rad; 					// Value for the radius
	final private double PI = 3.14159; 		// Sets the value of PI
	private String color, fill;


		// Constructor

		public void setcolor()
		{
			color = "Black";
		}

		public String getcolor()
		{
			return color;
		}

		public void setfill()
		{
			fill = "White";
		}

		public String getfill()
		{
			return fill;
		}

		public Circle3(double Radius)
		{
				rad = Radius;
		}

		public void setRadius(double Radius)
		{
				rad = 1.0;
		}

			// Gets properties of the Circle

		public double getRadius()
		{
				return rad;
		}

		public double getArea()
		{
				return PI * rad * rad;
		}

		public double getDiameter()
		{
				return rad * 2;
		}

		public double getCircumference()
		{
				return 2 * PI * rad;
		}

}









