equal
deleted
inserted
replaced
4 from objreader import LoadWavefrontObjFile |
4 from objreader import LoadWavefrontObjFile |
5 import Image |
5 import Image |
6 |
6 |
7 rt = Raytracer() |
7 rt = Raytracer() |
8 mat = Material(colour=(0.9, 0.9, 0.9)) |
8 mat = Material(colour=(0.9, 0.9, 0.9)) |
9 LoadWavefrontObjFile(rt, "sphere.obj", mat, 1.5) |
9 LoadWavefrontObjFile(rt, "../models/obj/sphere.obj", mat, 1.5) |
10 |
10 |
11 light1 = Light(position=(0.0, 2.0, 6.0), colour=(0.9, 0.3, 0.6)) |
11 light1 = Light(position=(0.0, 2.0, 6.0), colour=(0.9, 0.3, 0.6)) |
12 light1.castshadows(False); |
12 light1.castshadows(False); |
13 rt.addlight(light1) |
13 rt.addlight(light1) |
14 |
14 |