]> git.localhorst.tv Git - gong.git/blobdiff - tst/geometry/IntersectionTest.hpp
spheres
[gong.git] / tst / geometry / IntersectionTest.hpp
index 19c25e62bf2c2f3f5c176dc62e7dda3532542fab..d0c7d80444676bbab3573540885d4680ed05c8d1 100644 (file)
@@ -13,9 +13,11 @@ class IntersectionTest
 
 CPPUNIT_TEST_SUITE(IntersectionTest);
 
-CPPUNIT_TEST(testSimpleRayBoxIntersection);
-CPPUNIT_TEST(testRayBoxIntersection);
-CPPUNIT_TEST(testBoxBoxIntersection);
+CPPUNIT_TEST(testSimpleRayBox);
+CPPUNIT_TEST(testRayBox);
+CPPUNIT_TEST(testBoxBox);
+CPPUNIT_TEST(testSpherePlane);
+CPPUNIT_TEST(testSphereHalfSpace);
 
 CPPUNIT_TEST_SUITE_END();
 
@@ -23,9 +25,11 @@ public:
        void setUp();
        void tearDown();
 
-       void testSimpleRayBoxIntersection();
-       void testRayBoxIntersection();
-       void testBoxBoxIntersection();
+       void testSimpleRayBox();
+       void testRayBox();
+       void testBoxBox();
+       void testSpherePlane();
+       void testSphereHalfSpace();
 
 };