• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

SharedCode/H04-Dec-2021-14649

SimpleAssimpViewX/H04-Dec-2021-9,1868,851

SimpleOpenGL/H03-May-2022-670525

SimpleTexturedDirectx11/SimpleTexturedDirectx11/H03-May-2022-1,7881,303

SimpleTexturedOpenGL/H03-May-2022-1,144882

READMEH A D04-Dec-20211.8 KiB6337

README

1
2
3ASSIMP SAMPLES README
4=====================
5
6
71. General
8----------
9
10This directory contains various samples to illustrate Assimp's
11use in various real-world environments. Workspaces to build the
12samples can be found in the respective directories. The VC workspaces
13copy the created executables to the ./bin directory.
14
15All GL-based samples depend on FreeGLUT, the image loading will be done
16by a header-only library. For convenience, these libraries are included
17in the repository in their respective Windows/x86 prebuilt versions.
18To build on linux, install freeglut using the package manager of your
19choice. For instance on Ubuntu to install freeglut you can use the following
20command:
21
22> sudo apt install freeglut
23
24All samples will be placed at
25
26Win32: <assimp_repo>/<config>/bin
27
28or Linux : <assimp_repo>/bin
29
30
312. List of samples
32------------------
33
34SimpleOpenGL
35
36  A very simple and straightforward OpenGL sample. It loads a
37  model (gets the path to it on the command line, default is dwarf.x)
38  and displays the model as wireframe. Animations and materials are
39  not evaluated at all. This samples uses the C interface to Assimp.
40  Basic materials are displayed, but no textures.
41
42  This sample should work virtually everywhere, provided glut
43  is available.
44
45
46SimpleTexturedOpenGL
47
48  An extended OpenGL sample, featuring texturing using the DevIL
49  library. Based on SimpleOpenGL and the NeHe GL tutorial style.
50
51  This is a Windows-only sample.
52
53  This sample was kindly provided by SamHayne (http://sf.net/users/samhayne/)
54  See http://sourceforge.net/projects/assimp/forums/forum/817654/topic/3736373
55
56
57SimpleAssimpViewX
58
59  A Mac OSX-based viewer app. This sample was kindly provided by drparallax.
60  See http://sourceforge.net/projects/assimp/forums/forum/817654/topic/3917829
61
62
63