Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- #ifndef TESTNORMALS_H
- #define TESTNORMALS_H
-
- #include <cppunit/TestFixture.h>
- #include <cppunit/extensions/HelperMacros.h>
-
- #include <assimp/scene.h>
- #include <TriangulateProcess.h>
-
-
- using namespace std;
- using namespace Assimp;
-
- class TriangulateProcessTest : public CPPUNIT_NS :: TestFixture
- {
- CPPUNIT_TEST_SUITE (TriangulateProcessTest);
- CPPUNIT_TEST (testTriangulation);
- CPPUNIT_TEST_SUITE_END ();
-
- public:
- void setUp (void);
- void tearDown (void);
-
- protected:
-
- void testTriangulation (void);
-
- private:
-
-
- aiMesh* pcMesh;
- TriangulateProcess* piProcess;
- };
-
- #endif
|