From 9a9079a2b392424feb08051f81b41752039c5bb9 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 5 Dec 2011 21:51:33 +0900 Subject: [PATCH] Correct the start-solid in a corner test. It turns out that the box trace CAN get out of the solid from that location (though a similar point trace can not). This is because of my decision to allow non-points to touch a plane from either side without crossing the plane, whereas a point touching a plane is always considered to be on the front side of the plane as there is no further information to disambiguate on which side of the plane the point is. --- libs/models/test/testclip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/models/test/testclip.c b/libs/models/test/testclip.c index 594f05907..e0156cd11 100644 --- a/libs/models/test/testclip.c +++ b/libs/models/test/testclip.c @@ -124,7 +124,7 @@ test_t tests[] = { {"Point, Covered Step start solid", &point, &hull_covered_step, { 4, 0, -4}, {-12, 0, 12}, { 1, 1, 1, 0, 0, 9}}, {"Box, Covered Step start solid", &box, &hull_covered_step, - { -4, 0, 4}, {-12, 0, 12}, { 1, 1, 1, 0, 0, 9}}, + { -4, 0, 4}, {-12, 0, 12}, { 1, 0, 1, 1, 0, 9}}, {"Box, Covered Step start solid", &box, &hull_covered_step, { -17, 0, 4}, {-17, 0, 12}, { 1, 0, 1, 1, 0, 9}}, {"Box, Covered Step start solid", &box, &hull_covered_step,