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