undo breaking change

fixes-turtlebasket
Mattia Montanari 2023-02-14 14:14:37 +01:00
parent 4151e3aab0
commit b4de1e3a72
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ func TestGJK(t *testing.T) {
{5.0, 0.5, 0.0}, {5.0, 0.5, 0.0},
{5.0, -0.5, 0.0}, {5.0, -0.5, 0.0},
} }
fassert(t, GJK(a, b), 1) fassert(t, GJK(a, b), 0)
fassert(t, GJK(b, c), 1) fassert(t, GJK(b, c), 1)
fassert(t, GJK(a, c), 2) fassert(t, GJK(a, c), 2)
} }