| |
Creates
a rectangle with diagonal (x1, y1)
(x2, y2).
|
|
| Returns x-coordinate of the diagonal's first endpoint. |
|
| Returns y-coordinate of the diagonal's first endpoint. |
|
| Returns x-coordinate of the diagonal's second endpoint. |
|
| Returns y-coordinate of the diagonal's second endpoint. |
#include <IFM/window> int main() { wio << Rectangle(100, 100, 200, 200) << flush; wio.wait_for_mouse_click(); }