1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
#include "RectangleUtil.hh"
#include <cstdio>
struct Rect {
int x() const { return m_x; }
int y() const { return m_y; }
int width() const { return m_width; }
int height() const { return m_height; }
int m_x, m_y, m_width, m_height;
};
int test_insideBorder() {
printf("testing RectangleUtil::insideBorder()\n");
struct _t {
struct Rect rect;
int x;
int y;
int bw;
int truth;
};
_t tests[] = {
{ { 0, 0, 10, 10 }, 0, 0, 2, false }, // on the (outer) edge
{ { 0, 0, 10, 10 }, 1, 1, 2, false }, // on the (inner) edge
{ { 0, 0, 10, 10 }, 5, 5, 2, true }, // really inside
{ { 0, 0, 10, 10 }, -5, 0, 2, false }, // somewhere outside
{ { 0, 0, 10, 10 }, 20, 20, 2, false } // outside for sure
};
int i;
for (i = 0; i < sizeof(tests)/sizeof(_t); ++i) {
const _t& t = tests[i];
int result = RectangleUtil::insideBorder<Rect>(t.rect, t.x, t.y, t.bw);
printf(" %d: is (%02d|%02d) inside [%d %d]-[%d %d] with border %d: %s, %s\n",
i,
t.x, t.y,
t.rect.x(), t.rect.y(),
t.rect.x() + (int)t.rect.width(),
t.rect.y() + (int)t.rect.height(),
t.bw,
result ? "yes" : "no", result == t.truth ? "ok" : "failed");
}
printf("done.\n");
return 0;
}
int main(int argc, char **argv) {
test_insideBorder();
return 0;
}
|