Find the Intersection points of 2 rectangles

411 Views Asked by At

we have two examples of rectangle:

 public static Rectangle rect1 = new Rectangle(20, 300, 400, 160);
 public static Rectangle rect2 = new Rectangle(150, 60, 230, 450);

The problem is to find an algorithm that finds all intersection points of these two rectangles

3

There are 3 best solutions below

0
On

You can get the intersection points using inbuilt methods intersection

    Rectangle rect1 = new Rectangle(20, 300, 400, 160);
    Rectangle rect2 = new Rectangle(150, 60, 230, 450);

    Rectangle intersection = rect1.intersection(rect2);
    System.out.println(intersection);
0
On

You should do this:

public Area getRectanglesColisionArea(Rectangle rect1, Rectangle rect2){
    Area shape1 = new Area(rect1);
    Area shape2 = new Area(rect2);

    return shape1.intersect(shape2);
}

Returning area shape is the

To call the function just:

    Rectangle rect1 = new Rectangle(20, 300, 400, 160);
    Rectangle rect2 = new Rectangle(150, 60, 230, 450);
    Area result = getRectanglesColisionArea(rect1,rect2);

The Area result is the shape of the intersection, from there you can get the intersection points:

    Rectangle inters = result.getBounds();
    Double x1=inters.getX();
    Double y1=inters.getY();
    Double x2=inters.getX()+inters.getWidth();
    Double y2=inters.getY()+inters.getHeight();
0
On

For 2 rectangles, there would be four cases for intersection,

  1. One is inside another or they are totally disjoint - No point of intersection.
  2. They share a single point - 1 point of intersection.
  3. They intersect at exactly four points.
  4. They share part of one or more sides - infinite points of intersection.

These conditions can be used to write tests to find the solution.