From 67d1e861154cd28f60c5bf339ed9154a7e38ccfa Mon Sep 17 00:00:00 2001 From: Murilo Miranda Date: Mon, 3 Jun 2019 03:51:48 -0300 Subject: [PATCH] Adding 2 more properties I have added properties for the other 2 vertexes of the Rectangle, the upperRight and the lowerLeft vertexes. --- color.d | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/color.d b/color.d index dd863d0..e7d17d1 100644 --- a/color.d +++ b/color.d @@ -1480,15 +1480,29 @@ struct Rectangle { this(upperLeft.x, upperLeft.y, upperLeft.x + size.width, upperLeft.y + size.height); } - /// - @property Point upperLeft() { - return Point(left, top); - } + /// + @property Point upperLeft() + { + return Point(left, top); + } - /// - @property Point lowerRight() { - return Point(right, bottom); - } + /// + @property Point upperRight() + { + return Point(right, top); + } + + /// + @property Point lowerLeft() + { + return Point(left, bottom); + } + + /// + @property Point lowerRight() + { + return Point(right, bottom); + } /// @property Size size() {