thanks to MuriloMir for finding bug

This commit is contained in:
Adam D. Ruppe 2019-06-03 08:33:47 -04:00
parent 5967b959b4
commit 6ab8c638a1
1 changed files with 1 additions and 1 deletions

View File

@ -1512,7 +1512,7 @@ struct Rectangle {
/// ditto
bool contains(in Point p) {
return (p.x >= left && p.y < right && p.y >= top && p.y < bottom);
return (p.x >= left && p.x < right && p.y >= top && p.y < bottom);
}
/// Returns true of the two rectangles at any point overlap