Rectangle
目标区域相对于整个屏幕或窗口的位置,如不填,则表示整个屏幕或窗口。
C++
struct Rectangle {
int x;
int y;
int width;
int height;
Rectangle(): x(0), y(0), width(0), height(0) {}
Rectangle(int xx, int yy, int ww, int hh): x(xx), y(yy), width(ww), height(hh) {}
};
x
左上角的横向偏移。
y
左上角的纵向偏移。
width
目标区域的宽度。
height
目标区域的高度。