Major API cleanup. Unified formatting & doxygen tags in the public API.

Added factory provider for default log streams.
Added default log streams to std::out and std::cerr.
Updated VC8 project config, boost workarounds is now working for the viewer.
Updated unit test suite.
Fixed some minor issues in the postprocessing-framework.

BROKEN: DebugDLL build.




git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@292 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
This commit is contained in:
aramis_acg
2009-01-12 22:06:54 +00:00
parent bba8dee77d
commit 58eb786d62
102 changed files with 5278 additions and 1657 deletions

View File

@@ -1,11 +1,11 @@
#include "UnitTestPCH.h"
#include "utVertexTriangleAdjacency.h"
CPPUNIT_TEST_SUITE_REGISTRATION (VTAdjacency);
// ------------------------------------------------------------------------------------------------
void VTAdjacency :: setUp (void)
{
// build a test mesh with randomized input data
@@ -90,6 +90,7 @@ void VTAdjacency :: setUp (void)
}
}
// ------------------------------------------------------------------------------------------------
void VTAdjacency :: tearDown (void)
{
delete pMesh;
@@ -102,21 +103,25 @@ void VTAdjacency :: tearDown (void)
pMesh3 = 0;
}
// ------------------------------------------------------------------------------------------------
void VTAdjacency :: largeRandomDataSet (void)
{
checkMesh(pMesh);
}
// ------------------------------------------------------------------------------------------------
void VTAdjacency :: smallDataSet (void)
{
checkMesh(pMesh2);
}
// ------------------------------------------------------------------------------------------------
void VTAdjacency :: unreferencedVerticesSet (void)
{
checkMesh(pMesh3);
}
// ------------------------------------------------------------------------------------------------
void VTAdjacency :: checkMesh (aiMesh* pMesh)
{
pAdj = new VertexTriangleAdjacency(pMesh->mFaces,pMesh->mNumFaces,pMesh->mNumVertices,true);