assimp/test/invalid
aramis_acg 383a614931 Fixed some minor issues in the AC loader. However, it still crashes with large and complicated models. Line handling is complete.
Moved the code to find degenerated primitives to a separate step that is not anymore active by default. 
The FindInvalidData-Step isn't active by default now. It hast a flag and must be explicitly requested.
Added line and point handling code to the CalcTangentsStep - not yet tested.
Added support for the Sense 8 (WorldToolKit) NFF file format. The format uses the same file extension as the "Neutral File Format" (and is implemented in the same loader). Seems to work well, added test files for it.
Added itoa10 function - so we have itoa on all platforms.
Small optimizations in the SortByPType step.
Fixed the material validation: textured meshes without uv coords cause a warning now.
Fixed a minor isses with the OFF loader.
Added empty unit tests for the new steps - to be filled in the next days. 
Added SceneCombiner.cpp. It contains utilities to join meshes and scenes. The latter will be needed by the LWS loader (LWS files contain references to external LWO files and the LWO loader is already to complicated that it would make sense to add an additional code path to it). Mesh joining is needed by some pp steps, but the code has not yet been moved to its new location.
Added WIP light & camera support to the ASE loader. Works for the moment, but there's much missing. ASE parser refactored, the code is still quite long but at least cleaner. Fixed a bug that caused ASE to import invalid texture coordinates.
Makefiles and VC8 solution are up-to-date. The rest isn't.

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@192 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2008-10-22 20:06:16 +00:00
..
OutOfMemory.off Fixed some minor issues in the AC loader. However, it still crashes with large and complicated models. Line handling is complete. 2008-10-22 20:06:16 +00:00
empty.x Fixed some minor issues in the AC loader. However, it still crashes with large and complicated models. Line handling is complete. 2008-10-22 20:06:16 +00:00
readme.txt Fixed some minor issues in the AC loader. However, it still crashes with large and complicated models. Line handling is complete. 2008-10-22 20:06:16 +00:00

readme.txt

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.


*********************************************************
GENERAL
*********************************************************


The files in this directory are invalid ... some of them are empty, 
others have invalid vertices or faces, others are prepared to make
 assimp allocate a few hundreds gigs of memory ...

This test case is successful if the library (and the viewer) don't
crash.


*********************************************************
FILES
*********************************************************

OutOfMemory.off - the number of faces is invalid. There won't be 
  enough memory so std::vector::reserve() will most likely fail. 
  The exception should be caught in Importer.cpp.

empty.<x> - These files are completely empty. The corresponding
   loaders should not crash.