Adding 2 more properties

I have added properties for the other 2 vertexes of the Rectangle, the upperRight and the lowerLeft vertexes.
This commit is contained in:
Murilo Miranda 2019-06-03 03:51:48 -03:00 committed by GitHub
parent 5967b959b4
commit 67d1e86115
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() {