@@ -9,19 +9,22 @@ This is an implementation of a Python ray tracer base on Pete Shirley's [Ray Tra
9
9
- Primitives: Sphere, Disc Triangle, Plane, STL Files (triangle meshes)
10
10
- Texture mapping: SolidColor, CheckerBoard, ImageTexture
11
11
- Noise textures using [Perlin noise](https://en.wikipedia.org/wiki/Perlin_noise) for solid textures.
12
+ - Colormaps for noise textures. colorcet package included in requirements to provide perceptually linear
13
+ colormaps.
12
14
- Lighting: Point lights, Area lights (can use any Geometry with a point_on method -- triangle, disc,
13
15
sphere, etc.)
14
16
- Shadow rays for shadowing. Area lights drive their own shadow ray sampling for soft shadows.
15
17
- BVH (bounding volume hieraerchy)
18
+ - Multi-threaded GUI to provide image preview and ability to cancel an in-progress rendering.
16
19
- models: teapots, bunnies, etc.
17
20
18
21
## Install
19
22
20
23
1 . Install Python 3.6+
21
- 2 . For the gui version, make sure tkinter is available (type: * python -c "import tkinter"* to test). If this fails
24
+ 2 . For the gui version, make sure tkinter is available (type: ** python -c "import tkinter"* * to test). If this fails
22
25
you'll need to install tkinter for your platform
23
26
3 . Download/clone this git repository
24
- 4 . install the required packages: * pip install -r requirements.txt*
27
+ 4 . install the required packages: ** pip install -r requirements.txt* *
25
28
26
29
note 1: I have not tested the install on other systems. Let me know if there's an issue.
27
30
@@ -33,18 +36,18 @@ The easiest with to run the program is to use the GUI:
33
36
34
37
![ GUI] ( images/gui.png )
35
38
36
- type: *python rt_gui.py*
39
+ type: ** python rt_gui.py* *
37
40
38
- Then Click on the * start* button to start the rendering. The image will be saved in the current working directory
39
- as * rt.png* (unless changed by the IMAGE_FILENAME environment variable.)
41
+ Then Click on the ** start* * button to start the rendering. The image will be saved in the current working directory
42
+ as ** rt.png* * (unless changed by the IMAGE_FILENAME environment variable.)
40
43
41
44
note: There are a lot of features that could be added to the GUI. Top of the list is to set the scene file from a
42
45
command line option or menu item. For now it is hard-coded in the code. To change the scene, set the
43
46
CREATOR_FUNC variable:
44
47
45
48
CREATOR_FUNC = create_canonical_1
46
49
47
- There are several sample scene files in * create_scene_funcs.py* .
50
+ There are several sample scene files in ** create_scene_funcs.py* * .
48
51
49
52
The program can be run from the command line with:
50
53
0 commit comments