From 2ac9594f64f5945ba6bb2c05c5eb5270fa451a0a Mon Sep 17 00:00:00 2001 From: Murilo Miranda Date: Sat, 5 Oct 2019 20:36:12 -0300 Subject: [PATCH] Fixing the .center() property Now it is working properly, I have implemented it the right way now. --- color.d | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/color.d b/color.d index c0e4930..675870a 100644 --- a/color.d +++ b/color.d @@ -1509,6 +1509,11 @@ struct Rectangle { return Point(right, bottom); } + /// + @property Point center() { + return Point((right + left) / 2, (bottom + top) / 2); + } + /// @property Size size() { return Size(width, height);