From 6ab8c638a1f3fbdcd2259ae16f4d6e2e45db94f8 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Mon, 3 Jun 2019 08:33:47 -0400 Subject: [PATCH] thanks to MuriloMir for finding bug --- color.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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