Merge pull request #221 from MuriloMir/patch-3

Fixing the .center() property
This commit is contained in:
Adam D. Ruppe 2019-10-05 20:07:08 -04:00 committed by GitHub
commit 2a6bb100c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

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