projects
/
winnie
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
9c00b41b2c6df5d6cd5496505715b49439e77a68
[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
9
Rect rect_union(const Rect &a, const Rect &b);
10
Rect rect_intersection(const Rect &a, const Rect &b);
11
12
#endif // GEOM_H_