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

18
color.d
View File

@ -1481,12 +1481,26 @@ struct Rectangle {
}
///
@property Point upperLeft() {
@property Point upperLeft()
{
return Point(left, top);
}
///
@property Point lowerRight() {
@property Point upperRight()
{
return Point(right, top);
}
///
@property Point lowerLeft()
{
return Point(left, bottom);
}
///
@property Point lowerRight()
{
return Point(right, bottom);
}