I have two rectangles, the red rectangle (can move) and the blue rectangle. Both have: x, y, width, height.
How can I say in a programming language such as Java when there is a collision between the blue and the red rectangle?
I have two rectangles, the red rectangle (can move) and the blue rectangle. Both have: x, y, width, height.
How can I say in a programming language such as Java when there is a collision between the blue and the red rectangle?
You have to check both the intersection along the x-axis and along the y-axis. If any of them is missing, there is no collision between rectangles.
Code for 1-D:
boolean overlaps(double point1, double length1, double point2, double length2)
{
double highestStartPoint = Math.max(point1, point2);
double lowestEndPoint = Math.min(point1 + length1, point2 + length2);
return highestStartPoint < lowestEndPoint;
}
You have to call it for both x and y:
boolean collision(double x1, double x2, double y1, double y2, double width1, double width2, double height1, double height2)
{
return overlaps(x1, width1, x2, width2) && overlaps (y1, height1, y2, height2);
}
calculate 4 points of second rectangle. Note them as pointE, F, G H.
Iterate point E,F,G,H (1) if any of these is within area that A,B,C,D enclosed. return collision. (2) otherwise no collision.
For 3.(1) algorithm. you need something like this.
Xe >= Xa && Xc <= Xb. && Yc >= Yc && Ye <=Yc
Say you have Rect A, and Rect B. Proof is by contradiction. Any one of four conditions guarantees that no overlap can exist:
Therefore, a sufficient condition for Overlap is the opposite (De Morgan)
Not Cond1 And Not Cond2 And Not Cond3 And Not Cond4 This is equivalent to:
Note 1: It is fairly obvious this same principle can be extended to any number of dimensions. Note 2: It should also be fairly obvious to count overlaps of just one pixel, change the < and/or the > on that boundary to a <= or a >=.
If you are having a hard time visualizing why it works, I made an example page at silentmatt.com/intersection.html where you can drag rectangles around and see the comparisons.