Computer Graphics, Spring 2025

Michael Kazhdan


Assignment 2: Ray Tracing

Due on March 20 (Saturday) at 11:59 PM


Announcements


Overview

In this assignment you will implement a basic raytracer. To allow you to focus on the nuts and bolts of the actual ray tracing, you are provided with a host of data structures for managing the ray traced objects, linear algebra functions (vector and matrix objects and operations), a function for loading scene graph files into a prescribed node tree stucture, BMP and JPEG image file importers/exporters (for images and textures, etc), and a couple of supporting data structures for lights, materials, etc.

Getting Started

You should use the code (Assignments.zip) as a starting point for your assignment. We provide you with numerous files, but you should only have to change Ray/box.todo.cpp, Ray/camera.todo.cpp, Ray/cone.todo.cpp, Ray/cylinder.todo.cpp, Ray/directionalLight.todo.cpp, Ray/pointLight.todo.cpp, Ray/scene.todo.cpp, Ray/shapeList.todo.cpp, Ray/sphere.todo.cpp, Ray/sphereLight.todo.cpp, Ray/spotLight.todo.cpp, Ray/torus.todo.cpp, Ray/triangle.todo.cpp, and Util/geometry.todo.inl.

Note: Though you will need to modify the code in *.todo.* files, you can also augment the class definitions in the *.h files. However, please make sure to keep all function declarations in place.

After you download the files, the first thing to do is compile the program. To do this, you will first have to compile the GLEW, Image, (JPEG on Windows), Ray, and Util libraries and then compile the Assignment2 executable.


How the Executable Works

The executable takes in to mandatory arguments, the input (.ray) file name and the output image file name (.bmp, .jpeg, or .jpg). Additionally, you can pass in the dimensions of the output image, the recursion depth, and the cut-off value for early termination. It is invoked from the command line with:
% Assignment2 --in <input ray-file name> --out <output image file name>
Optional arguments (with default values) are:
--width <image width>=640
--height <image height>=480
--rLimit <recursion limit>=5
--cutOff <recursion cut-off threshold>=0.0001
--lSamples <number of light samples>=100
Feel free to add new arguments to deal with the new functionalities you are implementing. Just make sure they are documented.

How the Ray-Tracing Happens

The ray-tracer is implemented using computation kernels (functions passed as arguments to functions). Given a ray, the code traverses the scene graph, computes intersections, and (under appropriate conditions) invokes the computation kernel with the intersection info. The implementation is enabled by two virtual member functions of Ray::Shape: Both invoke the computation kernel on a valid intersection but Ray::Shape::processFirstIntersection terminates after it finds the first valid intersection while Ray::Shape::processAllIntersections processes all valid intersections. The former returns a bool value indicating if a valid intersection was found while the latter returns an int indicating how many valid intersections were found.

What You Have to Do

The assignment is worth 30 points. The following is a list of features that you may implement. The number in parentheses corresponds to how many points it is worth.

The assignment will be graded out of 30 points. In addition to implementing these features, there are several other ways to get more points: For images or movies that you submit, you also have to submit the sequence of commands used to created them, otherwise they will not be considered valid.

It is possible to get more than 30 points. However, after 30 points, each point is divided by 2, and after 32 points, each point is divided by 4. If your raw score is 29, your final score will be 29. If the raw score is 33, you'll get 31.25. For a raw score of 36, you'll get 32.


What to Submit

Submission intstructions are specified here.
Note that the autograder does not grade your submission. Passing the autograder only means that an image has been successfully generated.
Please include the following in your submission: