diff --git a/color.d b/color.d index dd863d0..9c73dcc 100644 --- a/color.d +++ b/color.d @@ -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