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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
#include <cu/cu.h>
#include "common.h"
#include <ccd/ccd.h>
#include "support.h"
#define TOSVT() \
svtObjPen(&box, &cyl, stdout, "Pen 1", depth, &dir, &pos); \
ccdVec3Scale(&dir, depth); \
ccdVec3Add(&cyl.pos, &dir); \
svtObjPen(&box, &cyl, stdout, "Pen 1", depth, &dir, &pos)
TEST(boxcylIntersect)
{
ccd_t ccd;
CCD_BOX(box);
CCD_CYL(cyl);
int res;
ccd_vec3_t axis;
box.x = 0.5;
box.y = 1.;
box.z = 1.5;
cyl.radius = 0.4;
cyl.height = 0.7;
CCD_INIT(&ccd);
ccd.support1 = ccdSupport;
ccd.support2 = ccdSupport;
ccdVec3Set(&cyl.pos, 0.1, 0., 0.);
res = ccdGJKIntersect(&box, &cyl, &ccd);
assertTrue(res);
ccdVec3Set(&cyl.pos, .6, 0., 0.);
res = ccdGJKIntersect(&box, &cyl, &ccd);
assertTrue(res);
ccdVec3Set(&cyl.pos, .6, 0.6, 0.);
res = ccdGJKIntersect(&box, &cyl, &ccd);
assertTrue(res);
ccdVec3Set(&cyl.pos, .6, 0.6, 0.5);
res = ccdGJKIntersect(&box, &cyl, &ccd);
assertTrue(res);
ccdVec3Set(&axis, 0., 1., 0.);
ccdQuatSetAngleAxis(&cyl.quat, M_PI / 3., &axis);
ccdVec3Set(&cyl.pos, .6, 0.6, 0.5);
res = ccdGJKIntersect(&box, &cyl, &ccd);
assertTrue(res);
ccdVec3Set(&axis, 0.67, 1.1, 0.12);
ccdQuatSetAngleAxis(&cyl.quat, M_PI / 4., &axis);
ccdVec3Set(&cyl.pos, .6, 0., 0.5);
res = ccdGJKIntersect(&box, &cyl, &ccd);
assertTrue(res);
ccdVec3Set(&axis, -0.1, 2.2, -1.);
ccdQuatSetAngleAxis(&cyl.quat, M_PI / 5., &axis);
ccdVec3Set(&cyl.pos, .6, 0., 0.5);
ccdVec3Set(&axis, 1., 1., 0.);
ccdQuatSetAngleAxis(&box.quat, -M_PI / 4., &axis);
ccdVec3Set(&box.pos, .6, 0., 0.5);
res = ccdGJKIntersect(&box, &cyl, &ccd);
assertTrue(res);
ccdVec3Set(&axis, -0.1, 2.2, -1.);
ccdQuatSetAngleAxis(&cyl.quat, M_PI / 5., &axis);
ccdVec3Set(&cyl.pos, .6, 0., 0.5);
ccdVec3Set(&axis, 1., 1., 0.);
ccdQuatSetAngleAxis(&box.quat, -M_PI / 4., &axis);
ccdVec3Set(&box.pos, .9, 0.8, 0.5);
res = ccdGJKIntersect(&box, &cyl, &ccd);
assertTrue(res);
}
TEST(boxcylPenEPA)
{
ccd_t ccd;
CCD_BOX(box);
CCD_CYL(cyl);
int res;
ccd_vec3_t axis;
ccd_real_t depth;
ccd_vec3_t dir, pos;
box.x = 0.5;
box.y = 1.;
box.z = 1.5;
cyl.radius = 0.4;
cyl.height = 0.7;
CCD_INIT(&ccd);
ccd.support1 = ccdSupport;
ccd.support2 = ccdSupport;
ccdVec3Set(&cyl.pos, 0.1, 0., 0.);
res = ccdGJKPenetration(&box, &cyl, &ccd, &depth, &dir, &pos);
assertTrue(res == 0);
recPen(depth, &dir, &pos, stdout, "Pen 1");
//TOSVT();
ccdVec3Set(&cyl.pos, .6, 0., 0.);
res = ccdGJKPenetration(&box, &cyl, &ccd, &depth, &dir, &pos);
assertTrue(res == 0);
recPen(depth, &dir, &pos, stdout, "Pen 2");
//TOSVT(); <<<
ccdVec3Set(&cyl.pos, .6, 0.6, 0.);
res = ccdGJKPenetration(&box, &cyl, &ccd, &depth, &dir, &pos);
assertTrue(res == 0);
recPen(depth, &dir, &pos, stdout, "Pen 3");
//TOSVT();
ccdVec3Set(&cyl.pos, .6, 0.6, 0.5);
res = ccdGJKPenetration(&box, &cyl, &ccd, &depth, &dir, &pos);
assertTrue(res == 0);
recPen(depth, &dir, &pos, stdout, "Pen 4");
//TOSVT();
ccdVec3Set(&axis, 0., 1., 0.);
ccdQuatSetAngleAxis(&cyl.quat, M_PI / 3., &axis);
ccdVec3Set(&cyl.pos, .6, 0.6, 0.5);
res = ccdGJKPenetration(&box, &cyl, &ccd, &depth, &dir, &pos);
assertTrue(res == 0);
recPen(depth, &dir, &pos, stdout, "Pen 5");
//TOSVT();
ccdVec3Set(&axis, 0.67, 1.1, 0.12);
ccdQuatSetAngleAxis(&cyl.quat, M_PI / 4., &axis);
ccdVec3Set(&cyl.pos, .6, 0., 0.5);
res = ccdGJKPenetration(&box, &cyl, &ccd, &depth, &dir, &pos);
assertTrue(res == 0);
recPen(depth, &dir, &pos, stdout, "Pen 6");
//TOSVT();
ccdVec3Set(&axis, -0.1, 2.2, -1.);
ccdQuatSetAngleAxis(&cyl.quat, M_PI / 5., &axis);
ccdVec3Set(&cyl.pos, .6, 0., 0.5);
ccdVec3Set(&axis, 1., 1., 0.);
ccdQuatSetAngleAxis(&box.quat, -M_PI / 4., &axis);
ccdVec3Set(&box.pos, .6, 0., 0.5);
res = ccdGJKPenetration(&box, &cyl, &ccd, &depth, &dir, &pos);
assertTrue(res == 0);
recPen(depth, &dir, &pos, stdout, "Pen 7");
//TOSVT();
ccdVec3Set(&axis, -0.1, 2.2, -1.);
ccdQuatSetAngleAxis(&cyl.quat, M_PI / 5., &axis);
ccdVec3Set(&cyl.pos, .6, 0., 0.5);
ccdVec3Set(&axis, 1., 1., 0.);
ccdQuatSetAngleAxis(&box.quat, -M_PI / 4., &axis);
ccdVec3Set(&box.pos, .9, 0.8, 0.5);
res = ccdGJKPenetration(&box, &cyl, &ccd, &depth, &dir, &pos);
assertTrue(res == 0);
recPen(depth, &dir, &pos, stdout, "Pen 8");
//TOSVT();
}
|