Skip to content

Commit b0e4188

Browse files
committed
more github cleanup
1 parent ab9a395 commit b0e4188

File tree

3 files changed

+12
-14
lines changed

3 files changed

+12
-14
lines changed

README.md

+9-6
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,22 @@ This is an implementation of a Python ray tracer base on Pete Shirley's [Ray Tra
99
- Primitives: Sphere, Disc Triangle, Plane, STL Files (triangle meshes)
1010
- Texture mapping: SolidColor, CheckerBoard, ImageTexture
1111
- 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.
1214
- Lighting: Point lights, Area lights (can use any Geometry with a point_on method -- triangle, disc,
1315
sphere, etc.)
1416
- Shadow rays for shadowing. Area lights drive their own shadow ray sampling for soft shadows.
1517
- BVH (bounding volume hieraerchy)
18+
- Multi-threaded GUI to provide image preview and ability to cancel an in-progress rendering.
1619
- models: teapots, bunnies, etc.
1720

1821
## Install
1922

2023
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
2225
you'll need to install tkinter for your platform
2326
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**
2528

2629
note 1: I have not tested the install on other systems. Let me know if there's an issue.
2730

@@ -33,18 +36,18 @@ The easiest with to run the program is to use the GUI:
3336

3437
![GUI](images/gui.png)
3538

36-
type: *python rt_gui.py*
39+
type: **python rt_gui.py**
3740

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.)
4043

4144
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
4245
command line option or menu item. For now it is hard-coded in the code. To change the scene, set the
4346
CREATOR_FUNC variable:
4447

4548
CREATOR_FUNC = create_canonical_1
4649

47-
There are several sample scene files in *create_scene_funcs.py*.
50+
There are several sample scene files in **create_scene_funcs.py**.
4851

4952
The program can be run from the command line with:
5053

geometry_classes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def get_color(val, colormap):
142142

143143
class Vec3():
144144
def __init__(self, x,y,z):
145-
self.x = x
145+
self.x = xcl
146146
self.y = y
147147
self.z = z
148148

scene.py

+2-7
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,11 @@ def __init__(self, geometry: GeometryList, lights=None, ambient=None, background
1919
"""
2020
Class the represent a scene. Includes the geometry and lighting.
2121
22+
:param geometry: a list of primitives (Geometry) objects for the scene
23+
:param lights: a list of lights (LightBase) objects for the scene
2224
ambient: ambient lighting
2325
background: background texture
24-
TODO:
25-
add lighting
26-
add start and end time
27-
add rendering?
28-
add camera?
2926
"""
30-
# self.geometry = geometry # not needed if you have bvh...
31-
# self.ambient = ambient_light # Vec3
3227
self.bvh = BVHNode(geometry)
3328

3429
if lights is None:

0 commit comments

Comments
 (0)