X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=tst%2Fgeometry%2FIntersectionTest.hpp;h=680d4cadf7b2c3b2f4a1c05a1a32b8753b760d77;hb=48d34439f3d5bc8bebabe9f0ee35970359e61bfa;hp=19c25e62bf2c2f3f5c176dc62e7dda3532542fab;hpb=0e069351615f1315a5c7103fe5c849a242f72683;p=gong.git diff --git a/tst/geometry/IntersectionTest.hpp b/tst/geometry/IntersectionTest.hpp index 19c25e6..680d4ca 100644 --- a/tst/geometry/IntersectionTest.hpp +++ b/tst/geometry/IntersectionTest.hpp @@ -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(); };