Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

java 0.13 (Geometry: the MyRectangle2D class) Define the MyRectangle2D class that contains: Two double data fields named x and y that specify the center of

java
image text in transcribed
image text in transcribed
0.13 (Geometry: the MyRectangle2D class) Define the MyRectangle2D class that contains: Two double data fields named x and y that specify the center of the rectangle with getter and setter methods. (Assume that the rectangle sides are parallel to x - or y - axes.) - The data fields width and height with getter and setter methods. - A no-arg constructor that creates a default rectangle with (0,0) for (x,y) and 1 for both width and height. A constructor that creates a rectangle with the specified x,y, width, and height. A method getArea O that returns the area of the rectangle. A method getPerimeter() that returns the perimeter of the rectangle. - A method contains (double x, double y ) that returns true if the specified point (x,y) is inside this rectangle (see Figure 10.24a). - A method contains (MyRectangle2D r) that returns true if the specified rectangle is inside this rectangle (see Figure 10.24b ). - A method overlaps (MyRectang7e2D r) that returns true if the specified rectangle overlaps with this rectangle (see Figure 10.24c ). Ficure 10.24 A point is inside the rectangle. (b) A rectangle is inside another rectangle. (c) A rectangle overlaps another rectangle. (d) Points are enclosed inside a rectangle. Draw the UML diagram for the class and then implement the class. Write a test program that creates a MyRectang 7 e2D object r1 (new MyRectang e2D (2, 2,5.5,4.9)), displays its area and perimeter, and displays the result of r1. contains (3, 3), r1. contains (new MyRectangle2D (4,5,10.5, 3.2)), and r1. overlaps (new MyRectangle2D (3,5,2.3,5.4))

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

Students also viewed these Databases questions

Question

How do Excel Pivot Tables handle data from non OLAP databases?

Answered: 1 week ago