README 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 FreeGLUT, the image loading will be done
  10. by a header-only library. For convenience, these libraries are included
  11. in the repository in their respective Windows/x86 prebuilt versions.
  12. To build on linux, install freeglut using the package manager of your
  13. choice. For instance on Ubuntu to install freeglut you can use the following
  14. command:
  15. > sudo apt install freeglut
  16. All samples will be placed at
  17. Win32: <assimp_repo>/<config>/bin
  18. or Linux : <assimp_repo>/bin
  19. 2. List of samples
  20. ------------------
  21. SimpleOpenGL
  22. A very simple and straightforward OpenGL sample. It loads a
  23. model (gets the path to it on the command line, default is dwarf.x)
  24. and displays the model as wireframe. Animations and materials are
  25. not evaluated at all. This samples uses the C interface to Assimp.
  26. Basic materials are displayed, but no textures.
  27. This sample should work virtually everywhere, provided glut
  28. is available.
  29. SimpleTexturedOpenGL
  30. An extended OpenGL sample, featuring texturing using the DevIL
  31. library. Based on SimpleOpenGL and the NeHe GL tutorial style.
  32. This is a Windows-only sample.
  33. This sample was kindly provided by SamHayne (http://sf.net/users/samhayne/)
  34. See http://sourceforge.net/projects/assimp/forums/forum/817654/topic/3736373
  35. SimpleAssimpViewX
  36. A Mac OSX-based viewer app. This sample was kindly provided by drparallax.
  37. See http://sourceforge.net/projects/assimp/forums/forum/817654/topic/3917829