raytracer-c/README.md
Zachary D. Rowitsch 97c39a263e typo in README.md
2020-08-20 00:14:13 -04:00

35 lines
739 B
Markdown

# raytracer-c
Current executables (and sample output) are:
## main/parabola
simple demonstration of tuple implementation, shooting a projectile with gravity & wind vectors...
![](images/parabola.png)
## main/sphere_shadow
Matrix implementation allow us to cast rays...and intersect them with a sphere
![](images/sphere_shadow.png)
## main/phong_render_sphere
Phone shading!
![](images/phong_render_sphere2.png)
## main/phong_render_three_spheres
Multiple objects, but they are all spheres...Some are simply scaled to look flat.
![](images/phong_render_three_spheres.png)
## main/phong_render_three_spheres (with shadows)
Same executable but now shadows are added...
![](images/phong_render_three_spheres_with_shadows.png)