Write a simple class named circle, with a single instance variable: a double named x, y and radius. Use GUI…

Write a simple class named circle, with a single instance variable: a double named x, y and radius. Use GUI components to read any input used to initialize your circles (x, y, r). Your class should have member functions with the following signatures.

  1. void setRadius(double r)
  2. void setX(double value)
  3. void setY(double value)
  4. double getRadius()
  5. double getX()
  6. double getY()
  7. double getArea()
  8. bool containsPoint(double xValue, double yValue)

When you are calculating the area you can use 3.14 for pi. The formula will be radius * radius * 3.14.

You can determine whether or not a point is in a circle by calculating the distance from the center of the circle (its x and y coordinates) to the point.  If this distance is less than or equal to the radius then the point is inside the circle. (calculate distance between two points)

Save your time - order a paper!

Get your paper written from scratch within the tight deadline. Our service is a reliable solution to all your troubles. Place an order on any task and we will take care of it. You won’t have to worry about the quality and deadlines

Order Paper Now

Write a main function that tests your class. It should instantiate a number of circle objects with different radius values. It should report any results using GUI components.  You should test all three member functions until you are confident that they work.  For practice, make sure you try each of the following:

  1. Create a local circle object and set its x, y, and radius. Verify that it’s area is calculated correctly.
  2. Create a circle reference variable, and point it at a dynamically instantiated circle. Use the pointer to set it’s x, y, and radius values
  3. Create a local array of three circles. Test the member functions on one of the elements.
  4. Dynamically instantiate an array of three circles. Test the member functions on one of the elements.
 
Looking for a similar assignment? Our writers will offer you original work free from plagiarism. We follow the assignment instructions to the letter and always deliver on time. Be assured of a quality paper that will raise your grade. Order now and Get a 15% Discount! Use Coupon Code "Newclient"