Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C++ PLEASE, PLEASE SHOW SCREEN SHOT OF OUTPUT 1. (Geometry: The Rectangle 2D class) Define the Rectangle2D class that contains: Two double data fields named

C++ PLEASE, PLEASE SHOW SCREEN SHOT OF OUTPUT

image text in transcribed

1. (Geometry: The Rectangle 2D class) Define the Rectangle2D class that contains: Two double data fields named x and y that specify the center of the rectangle with constant get functions and set functions. (Assume that the rectangle sides are parallel to x or y- axes.) The double data fields width and height with constant get functions and set functions. A no-arg constructor that creates a default rectangle with (e, e) for (x, y) and 1 for both width and height. A constructor that creates a rectangle with the specified x, y, width, and height. constant function getArea() that returns the area of the rectangle. A constant function getPerimeter) that returns the perimeter of the rectangle. - A .A constant function contains (double x, double y) that returns true if the specified point (x, y ) is inside this rectangle. See Figure a. A constant function contains (const Rectangle2D &r) that returns true if the specified rectangle is inside this rectangle. See Figure b. A constant function overlaps (const Rectangle2D &r) that returns true if the specified rectangle overlaps with this rectangle. See Figure c. Draw the UML diagram for the class. Implement the class. Write a test program that creates three Rectangle2D objects r1(2, 2, 5.5, 4.9), r2(4, 5, 10.5, 3.2)), and r3 (3, 5, 2.3, 5.4), and displays each object's area and perimeter, and displays the result of r1.contains(3, 3) , ri.contains (r2), and ri.overlaps (r3) 1. (Geometry: The Rectangle 2D class) Define the Rectangle2D class that contains: Two double data fields named x and y that specify the center of the rectangle with constant get functions and set functions. (Assume that the rectangle sides are parallel to x or y- axes.) The double data fields width and height with constant get functions and set functions. A no-arg constructor that creates a default rectangle with (e, e) for (x, y) and 1 for both width and height. A constructor that creates a rectangle with the specified x, y, width, and height. constant function getArea() that returns the area of the rectangle. A constant function getPerimeter) that returns the perimeter of the rectangle. - A .A constant function contains (double x, double y) that returns true if the specified point (x, y ) is inside this rectangle. See Figure a. A constant function contains (const Rectangle2D &r) that returns true if the specified rectangle is inside this rectangle. See Figure b. A constant function overlaps (const Rectangle2D &r) that returns true if the specified rectangle overlaps with this rectangle. See Figure c. Draw the UML diagram for the class. Implement the class. Write a test program that creates three Rectangle2D objects r1(2, 2, 5.5, 4.9), r2(4, 5, 10.5, 3.2)), and r3 (3, 5, 2.3, 5.4), and displays each object's area and perimeter, and displays the result of r1.contains(3, 3) , ri.contains (r2), and ri.overlaps (r3)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Advanced MySQL 8 Discover The Full Potential Of MySQL And Ensure High Performance Of Your Database

Authors: Eric Vanier ,Birju Shah ,Tejaswi Malepati

1st Edition

1788834445, 978-1788834445

More Books

Students also viewed these Databases questions