35 lines
739 B
Markdown
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...
|
|
|
|

|
|
|
|
## main/sphere_shadow
|
|
|
|
Matrix implementation allow us to cast rays...and intersect them with a sphere
|
|
|
|

|
|
|
|
## main/phong_render_sphere
|
|
|
|
Phone shading!
|
|
|
|

|
|
|
|
## main/phong_render_three_spheres
|
|
|
|
Multiple objects, but they are all spheres...Some are simply scaled to look flat.
|
|
|
|

|
|
|
|
## main/phong_render_three_spheres (with shadows)
|
|
|
|
Same executable but now shadows are added...
|
|
|
|

|
|
|