A rectangle with specified origin and size. More...
Public Member Functions | |
Rectangle (this.x, this.y, this.width, this.height) | |
Default constructor. | |
Public Attributes | |
double | x |
rectangle's origin x coordinate. | |
double | y |
rectangle's origin y coordinate. | |
double | width |
rectangle's width. | |
double | height |
rectangle's height. | |
A rectangle with specified origin and size.
Definition at line 17 of file rectangle.dart.
Rectangle.Rectangle | ( | this. | x, |
this. | y, | ||
this. | width, | ||
this. | height ) |
Default constructor.
double Rectangle.height |
rectangle's height.
Definition at line 43 of file rectangle.dart.
double Rectangle.width |
rectangle's width.
Definition at line 37 of file rectangle.dart.
double Rectangle.x |
rectangle's origin x
coordinate.
Definition at line 25 of file rectangle.dart.
double Rectangle.y |
rectangle's origin y
coordinate.
Definition at line 31 of file rectangle.dart.