From 9dd03c3158977038302feb9bb45cc6cd77bb89d5 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Mon, 3 Jun 2019 08:39:56 -0400 Subject: [PATCH] change style to mine again --- color.d | 36 ++++++++++++++++-------------------- 1 file changed, 16 insertions(+), 20 deletions(-) diff --git a/color.d b/color.d index caeaea6..897db9a 100644 --- a/color.d +++ b/color.d @@ -1480,29 +1480,25 @@ 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 upperRight() - { - return Point(right, top); - } + /// + @property Point upperRight() { + return Point(right, top); + } - /// - @property Point lowerLeft() - { - return Point(left, bottom); - } + /// + @property Point lowerLeft() { + return Point(left, bottom); + } - /// - @property Point lowerRight() - { - return Point(right, bottom); - } + /// + @property Point lowerRight() { + return Point(right, bottom); + } /// @property Size size() {