You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

utLimitBoneWeights.h 609 B

123456789101112131415161718192021222324252627282930313233343536
  1. #ifndef TESTLBW_H
  2. #define TESTLBW_H
  3. #include <cppunit/TestFixture.h>
  4. #include <cppunit/extensions/HelperMacros.h>
  5. #include <assimp/scene.h>
  6. #include <LimitBoneWeightsProcess.h>
  7. using namespace std;
  8. using namespace Assimp;
  9. class LimitBoneWeightsTest : public CPPUNIT_NS :: TestFixture
  10. {
  11. CPPUNIT_TEST_SUITE (LimitBoneWeightsTest);
  12. CPPUNIT_TEST (testProcess);
  13. CPPUNIT_TEST_SUITE_END ();
  14. public:
  15. void setUp (void);
  16. void tearDown (void);
  17. protected:
  18. void testProcess (void);
  19. private:
  20. LimitBoneWeightsProcess* piProcess;
  21. aiMesh* pcMesh;
  22. };
  23. #endif