-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
34 lines (26 loc) · 1.13 KB
/
README
File metadata and controls
34 lines (26 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
DAEView.
This library implements the set of functionality required to visualize
COLLADA DAE files. The library is portable and written using modern
OpenGL API (no deprecated functions are used). In addition, there is a
test application which illustrates how to use the library and is in
fact a simple COLLADA viewer.
Please refer to the https://www.gitorious.org/daeview/pages/Home for
more details about the project.
To compile, I would suggest to create the following file structure:
daeview/
git/
build/
Then clone the repository:
git clone git://gitorious.org/daeview/daeview.git git
Enter build/ director and run cmake as following to generate makefiles
cmake ../git
or use more interactive way by issuing:
ccmake ../git
then adjust compilation options and press 'c' as many times as
necessary and finally 'g' to generate makefiles.
Then just type make. The exectutable daeviewer file will be located in
the build/src/daeviewer and the library in build/src/collada-view .
Please feel free to ask questions in the project discussion group:
http://groups.google.com/group/veter-project
Regards,
Andrey Nechypurenko (andreynech@gmail.com)