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