Basic Ray Tracer
February 12, 2005
Description
This ray tracer creates an image that contains 1 light source, 2 spheres, a checkerboard ground plane and a background.
The lighting in the scene includes ambient, diffuse and specular effects on Objects including shadows.
Source Code
The source code consits of the following files:
- rayTracer_03.C
- vector.H
- vector.C
- color.H
- color.C
- ray.H
- ray.C
There is a Make file that compiles the program
Problems
While writing this raytracer there were several things that gave me problems,
- Specular
- Shadows
- Arbitrary Aspect Ratio
|