I am trying to write small program to check if one rectangle contains second rectangle and distance betwwen their borders should be less than some specific number like 100 or 50. When I use Rectangle.contains method it doesnt care about about distnce between borders of both rectangle. Is there any way this can be achieved?
|
|
You could use the contains(Rectancle r) method twice: first to check if the inner rectangle is inside the outer rectangle at all, then temporarily enlarge the inner rectangle by half the threshold into every direction and make the same check again. This time it shouldn't be inside the outer rectangle anymore. So basically something like this:
|
|||||||
|
|
example code etc? Even so, you'll want to do the following: unless im mistaken.
etc etc |
|||
|
|
|
In Rectangle2d ,we are having boolean contains(double x, double y)
boolean contains(double x, double y, double w, double h)
So it is not possible to check about the distance to my knowledge... |
|||
|
|
|
If the rectangles are orthogonal, and I assume that you have called
|
|||||
|
