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 1.8 KiB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. ASSIMP SAMPLES README
  2. =====================
  3. 1. General
  4. ----------
  5. This directory contains various samples to illustrate Assimp's
  6. use in various real-world environments. Workspaces to build the
  7. samples can be found in the respective directories. The VC workspaces
  8. copy the created executables to the ./bin directory.
  9. All GL-based samples depend on GLUT, some on DevIL. For convenience,
  10. these libraries are included in the repository in their respective
  11. Windows/x86 prebuilt versions. To build on linux, install the
  12. required packages using the package manager of your choice.
  13. Also note that the VS workspaces link against the DLL version of the
  14. Assimp library, thus you need to build it in the first place (
  15. assimp-release-dll build configuration). The Assimp DLL needs to be
  16. copied to ./bin as well (the VS workspaces will try to do this
  17. automatically).
  18. 2. List of samples
  19. ------------------
  20. SimpleOpenGL
  21. A very simple and straightforward OpenGL sample. It loads a
  22. model (gets the path to it on the command line, default is dwarf.x)
  23. and displays the model as wireframe. Animations and materials are
  24. not evaluated at all. This samples uses the C interface to Assimp.
  25. Basic materials are displayed, but no textures.
  26. This sample should work virtually everywhere, provided glut
  27. is available.
  28. SimpleTexturedOpenGL
  29. An extended OpenGL sample, featuring texturing using the DevIL
  30. library. Based on SimpleOpenGL and the NeHe GL tutorial style.
  31. This is a Windows-only sample.
  32. This sample was kindly provided by SamHayne (http://sf.net/users/samhayne/)
  33. See http://sourceforge.net/projects/assimp/forums/forum/817654/topic/3736373
  34. SimpleAssimpViewX
  35. A Mac OSX-based viewer app. This sample was kindly provided by drparallax.
  36. See http://sourceforge.net/projects/assimp/forums/forum/817654/topic/3917829