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);