-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.txt
77 lines (52 loc) · 2.19 KB
/
README.txt
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
Traceur
What is it?
-----------
The Traceur project is an open-source raytracing engine written in
C++, taking a modular approach to provide a powerful and flexible raytracing.
Overview
--------
The Traceur project consists of several modules which together, form a
full-featured raytracing engine implementation, supporting multiple input
and output formats and raytracing kernels. The following is a list
of all modules of the Traceur project with their descriptions:
* core
The core module provides the main interface of the raytracing engine,
abstracting away the raytracing kernels, acceleration structures, scene
loaders and exporters.
* loader-wavefront
The loader-wavefront module provides a basic Wavefront 3d object scene loader,
with support for materials.
* exporter-ppm
The exporter-ppm module provides a simple exporter for the ppm file format.
* frontend-glut
The frontend-glut module is the legacy GLUT frontend of the project based
on raytracing code provided by the TI1806 course at
Delft University of Technolgy.
Troubleshooting
---------------
For troubleshooting, please visit the project wiki at
https://github.com/fabianishere/traceur/wiki or take a look at the
documentation in the "docs" directory or online at
http://fabianishere.github.io/traceur/docs.
Building
--------
CMake is used as building system, so please consult https://cmake.org for
installation instructions in case you haven't got.
Download the source code as ZIP file from
https://github.com/fabianishere/traceur/archive/master.zip or simply clone the
repository at https://github.com/fabianishere/traceur using Git.
After that, run the following commands in your command prompt in the source
directory:
$ mkdir build
$ cd build
$ cmake ..
$ make
to build the project.
Documentation
-------------
The documentation is available in the "docs" directory or online at
http://fabianishere.github.io/traceur/docs
Licensing
---------
The Traceur project is released under the MIT License.
Please see the file called LICENSE.txt for more information.