mirror of https://github.com/adamdruppe/arsd.git
Merge pull request #192 from MuriloMir/patch-2
Adding 2 more properties
This commit is contained in:
commit
7613028eeb
30
color.d
30
color.d
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue