Define a class named Rectangle. A Rectangle object stores an (x, y) coordinate of its top/left corner, a width, and a height. Each Rectangle object should have the following public methods: Rectangle (x, y, width, height) Constructs a new rectangle whose top-left corner is specified by the given coordinates and with the given width and height. getX () Returns this rectangle's leftmost x-coordinate. getY () Returns this rectangle's top y-coordinate. getWidth() Returns this rectangle's width. getHeight() Returns this rectangle's height. toString() Returns a String representation of this rectangle, such as "Rectangle [x=1, y=2, width=3, height=4]". contains (x, y) Returns whether the given Point's coordinates lie inside the bounds of this rectangle. intersect (rect) Turns this rectangle into the intersection of itself and the given other rectangle rect; that is, the largest rectangular region completely contained within both this rectangle and the given other rectangle. (In the picture at right, the intersection of the two rectagles is the shaded black region.) You may assume that the two rectangles do overlap and therefore have a nonempty intersection. equals (o) Returns whether the given other object o is a rectangle with the same x/y coordinates, width, and height as this rectangle. You may assume that o refers to a Rectangle object.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

This question was rejected from incompletion but it's completed. Answer the prompt with the following code as a guide for the main method:

import java.awt.*;

 

public class TestRectangle {

    public static void main(String[] args) {

        Rectangle r1 = new Rectangle(5, 4, 10, 17);

        Rectangle r2 = new Rectangle(10, 10, 20, 3);

        Rectangle r3 = new Rectangle(0, 1, 12, 15);

        Rectangle r4 = new Rectangle(10, 10, 20, 3);

       

        System.out.println("r1 = " + r1);

        System.out.println("r2 = " + r2);

        System.out.println("r3 = " + r3);

       

        System.out.println("r2 equals r1? " + r2.equals(r1));

        System.out.println("r2 equals r2? " + r2.equals(r2));

        System.out.println("r2 equals r3? " + r2.equals(r3));

        System.out.println("r2 equals r4? " + r2.equals(r4));

 

        System.out.println("r1 contains (6, 8)? = " + r1.contains(6, 8));

        System.out.println("r2 contains (6, 8)? = " + r2.contains(6, 8));

        System.out.println("r3 contains (6, 8)? = " + r3.contains(6, 8));

        System.out.println("r2 contains (30, 13)? = " + r2.contains(30, 13));

 

        r1.intersect(r3);

        r2.intersect(r4);

        System.out.println("r1 intersect r3 = " + r1);

        System.out.println("r2 intersect r4 = " + r2);

 

        r1.intersect(r2);

        System.out.println("r1 intersect r2 = " + r1);

    }

}

Define a class named Rectangle. A Rectangle object stores an (x, y) coordinate of its top/left corner, a
width, and a height.
Each Rectangle object should have the following public methods:
Rectangle (x, y, width, height)
Constructs a new rectangle whose top-left corner is specified by the given coordinates and with the given
width and height.
getx()
Returns this rectangle's leftmost x-coordinate.
getY ()
Returns this rectangle's top y-coordinate.
getwidth ()
Returns this rectangle's width.
getHeight ()
Returns this rectangle's height.
tostring ()
Returns a String representation of this rectangle, such as "Rectangle [x=1, y=2,width=3,height=4]".
contains (x, y)
Returns whether the given Point's coordinates lie inside the bounds of this rectangle.
intersect (rect)
Turns this rectangle into the intersection of itself and the given other rectangle rect;
that is, the largest rectangular region completely contained within both this rectangle
and the given other rectangle. (In the picture at right, the intersection of the two
rectagles is the shaded black region.) You may assume that the two rectangles do
overlap and therefore have a nonempty intersection.
equals (o)
Returns whether the given other object o is a rectangle with the same x/y coordinates, width, and height as
this rectangle. You may assume that o refers to a Rectangle object.
Transcribed Image Text:Define a class named Rectangle. A Rectangle object stores an (x, y) coordinate of its top/left corner, a width, and a height. Each Rectangle object should have the following public methods: Rectangle (x, y, width, height) Constructs a new rectangle whose top-left corner is specified by the given coordinates and with the given width and height. getx() Returns this rectangle's leftmost x-coordinate. getY () Returns this rectangle's top y-coordinate. getwidth () Returns this rectangle's width. getHeight () Returns this rectangle's height. tostring () Returns a String representation of this rectangle, such as "Rectangle [x=1, y=2,width=3,height=4]". contains (x, y) Returns whether the given Point's coordinates lie inside the bounds of this rectangle. intersect (rect) Turns this rectangle into the intersection of itself and the given other rectangle rect; that is, the largest rectangular region completely contained within both this rectangle and the given other rectangle. (In the picture at right, the intersection of the two rectagles is the shaded black region.) You may assume that the two rectangles do overlap and therefore have a nonempty intersection. equals (o) Returns whether the given other object o is a rectangle with the same x/y coordinates, width, and height as this rectangle. You may assume that o refers to a Rectangle object.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Math class and its different methods
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education