mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 14:20:59 +00:00
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.
This commit is contained in:
parent
4419d4c4ad
commit
9a9079a2b3
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue