53181db16a9a88c343f863cf132843afedf70294
[winnie] / src / geom.cc
1 /*
2 winnie - an experimental window system
3
4 Copyright (C) 2013 Eleni Maria Stea
5
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 Author: Eleni Maria Stea <elene.mst@gmail.com>
20 */
21
22 #include "geom.h"
23
24 Rect::Rect()
25 {
26         x = y = width = height = 0;
27 }
28
29 Rect::Rect(int x, int y, int w, int h)
30 {
31         this->x = x;
32         this->y = y;
33         width = w;
34         height = h;
35 }
36
37 static inline int min(int x, int y)
38 {
39         return x < y ? x : y;
40 }
41
42 static inline int max(int x, int y)
43 {
44         return x > y ? x : y;
45 }
46
47 Rect rect_union(const Rect &a, const Rect &b)
48 {
49         Rect uni;
50         uni.x = min(a.x, b.x);
51         uni.y = min(a.y, b.y);
52         uni.width = max(a.x + a.width, b.x + b.width) - uni.x;
53         uni.height = max(a.y + a.height, b.y + b.height) - uni.y;
54
55         return uni;
56 }
57
58 Rect rect_intersection(const Rect &a, const Rect &b)
59 {
60         Rect intersect;
61         intersect.x = max(a.x, b.x);
62         intersect.y = max(a.y, b.y);
63         intersect.width = max(min(a.x + a.width, b.x + b.width) - intersect.x, 0);
64         intersect.height = max(min(a.y + a.height, b.y + b.height) - intersect.y, 0);
65
66         return intersect;
67 }