]> git.localhorst.tv Git - blank.git/blob - tst/geometry/IntersectionTest.hpp
faster ray/box test for AABBs
[blank.git] / tst / geometry / IntersectionTest.hpp
1 #ifndef BLANK_TEST_GEOMETRY_INTERSECTIONTEST_H_
2 #define BLANK_TEST_GEOMETRY_INTERSECTIONTEST_H_
3
4 #include <cppunit/extensions/HelperMacros.h>
5
6
7 namespace blank {
8 namespace test {
9
10 class IntersectionTest
11 : public CppUnit::TestFixture {
12
13 CPPUNIT_TEST_SUITE(IntersectionTest);
14
15 CPPUNIT_TEST(testSimpleRayBoxIntersection);
16 CPPUNIT_TEST(testRayBoxIntersection);
17 CPPUNIT_TEST(testBoxBoxIntersection);
18
19 CPPUNIT_TEST_SUITE_END();
20
21 public:
22         void setUp();
23         void tearDown();
24
25         void testSimpleRayBoxIntersection();
26         void testRayBoxIntersection();
27         void testBoxBoxIntersection();
28
29 };
30
31 }
32 }
33
34 #endif