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.

README.txt 1.8 KiB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. Assimp.NET
  2. ----------
  3. This part of the assimp project provides a .NET wrapper for the main assimp
  4. classes and a test viewer written in C# that shows how to use the API.
  5. NOTE: This has only been tested on 32-bit Windows 7 in .NET 3.5SP1 compiled
  6. under Visual Studio 2008 with the 'Debug' and 'Release' targets.
  7. How To Build
  8. ------------
  9. For Windows:
  10. You don't need to build the main assimp projects first, that project is
  11. referenced in the "Assimp.NET.sln" solution file so you can test C++ changes
  12. to the main assimp source from the C# viewer application.
  13. 1) Download SWIG 2.0.0 or later (http://sourceforge.net/projects/swig/)
  14. Install it somewhere like (C:\Program Files\swigwin-2.0.0).
  15. NOTE: you can leave this step out, provided the SWIG-generated
  16. files in the repository are up-to-date. This will usually be
  17. the case in release versions, but not necessarily in TRUNK.
  18. 2) Download Boost 1.43.0 or later (http://www.boost.org/)
  19. Install it somewhere like (C:\Program Files\Boost\boost_1_43_0).
  20. 2) In Visual Studio 2008 go to:
  21. Tools->Options->Projects and Solutions->VC++ Directories
  22. Set "Platform:" to "Win32"
  23. Set "Show directories for:" to "Executable Files"
  24. - Add the swig directory to this list (C:\Program Files\swigwin-2.0.0).
  25. Set "Show directories for:" to "Include Files"
  26. - Add the boost directory to this list (C:\Program Files\Boost\boost_1_43_0).
  27. 3) Open the "Assimp.NET.sln" solution file in Visual Studio
  28. 4) Build and run Assimp.NET_DEMO.
  29. By default, the viewer application loads a pre-defined 3DS test file from
  30. the /test/models/3DS folder. To load another file, pass it on the
  31. command line.
  32. The viewer is very minimalistic, don't expect all files to be displayed
  33. properly. Feel free to extend it ;-)
  34. License
  35. -------
  36. The license for Assimp.NET is the same as the main Assimp license.