mirror of https://github.com/adamdruppe/arsd.git
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:
parent
5967b959b4
commit
67d1e86115
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