203914a13f47e1cab3d2f3d68bd4021723ea40fc
[winnie] / src / geom.h
1 #ifndef GEOM_H_
2 #define GEOM_H_
3
4 struct Rect {
5         int x, y;
6         int width, height;
7
8         Rect();
9         Rect(int x, int y, int w, int h);
10 };
11
12 Rect rect_union(const Rect &a, const Rect &b);
13 Rect rect_intersection(const Rect &a, const Rect &b);
14
15 #endif  // GEOM_H_