forked from rafael-fuente/Python-Raytracer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
20 lines (19 loc) · 773 Bytes
/
test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from sightpy import *
# Set Scene
Sc = Scene(ambient_color=rgb(0., 0., 0.))
Sc.add_Camera(
screen_width=400, screen_height=400,
look_from=vec3(0, 10, 10), look_at=vec3(0, 0, 0),
focal_distance=1., field_of_view=90
)
Sc.add_DirectionalLight(Ldir=vec3(-1.0, -1.0, -1.0), color=rgb(5., 0., 0.))
Sc.add_DirectionalLight(Ldir=vec3(0, 0, 0), color=rgb(10., 10., 10.))
Sc.add_DirectionalLight(Ldir=vec3(1.0, 1.0, 1.0), color=rgb(0., 0., 5.))
Sc.add_DirectionalLight(Ldir=vec3(-1.0, 1.0, -1.0), color=rgb(0., 5., 0.))
white_diffuse = Diffuse(diff_color=rgb(.73, .73, .73))
Sc.add(
Sphere(material=white_diffuse, center=vec3(0., 0., -5.), radius=3., shadow=False, max_ray_depth=5)
)
# Render
img = Sc.render(samples_per_pixel=10, progress_bar=False)
img.save("test.png")