Merge pull request #192 from MuriloMir/patch-2

Adding 2 more properties
This commit is contained in:
Adam D. Ruppe 2019-06-03 08:35:26 -04:00 committed by GitHub
commit 7613028eeb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 22 additions and 8 deletions

30
color.d
View File

@ -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() {