Fixing the .center() property

Now it is working properly, I have implemented it the right way now.
This commit is contained in:
Murilo Miranda 2019-10-05 20:36:12 -03:00 committed by GitHub
parent a318432994
commit 2ac9594f64
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);