Compute the color of the pixel at (x,y) by raytracing.
The default implementation here just traces through the center of the pixel and sets the output color to white if the ray intersects the scene, and black otherwise. To implement various raytracing techniques, this function should be overridden in a sub class.
Reimplemented in PathTracer, and WhittedTracer. |