From 9bbf1a911025ae51bd7d4567bf5c02c8f7ccfa9c Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Wed, 13 Mar 2013 16:38:56 +0900 Subject: [PATCH] test the right cs function (oops) --- libs/util/test/test-cs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/util/test/test-cs.c b/libs/util/test/test-cs.c index 959f45f89..9f2d0dc69 100644 --- a/libs/util/test/test-cs.c +++ b/libs/util/test/test-cs.c @@ -56,7 +56,7 @@ main (int argc, const char **argv) double start, end; for (i = 0; i < num_tests; i ++) { - sphere = BoundingSphere (tests[i].points, tests[i].num_points); + CircumSphere (tests[i].points, tests[i].num_points, &sphere); if (VectorDistance_fast (sphere.center, tests[i].expect.center) > 1e-4 || fabs (sphere.radius - tests[i].expect.radius) > 1e-4) { res = 1;