csci5607/assignment-1a
2023-02-20 22:16:18 -06:00
..
doc Rename assignment 1 to 1a 2023-02-20 22:15:37 -06:00
examples Rename assignment 1 to 1a 2023-02-20 22:15:37 -06:00
src Filter out t < 0 2023-02-20 22:16:18 -06:00
.gitignore Rename assignment 1 to 1a 2023-02-20 22:15:37 -06:00
ASSIGNMENT.md Fix unicode 2023-02-20 22:16:04 -06:00
Cargo.lock Rename assignment 1 to 1a 2023-02-20 22:15:37 -06:00
Cargo.toml Rename assignment 1 to 1a 2023-02-20 22:15:37 -06:00
Makefile Rename assignment 1 to 1a 2023-02-20 22:15:37 -06:00
README.md Rename assignment 1 to 1a 2023-02-20 22:15:37 -06:00
writeup.md Rename assignment 1 to 1a 2023-02-20 22:15:37 -06:00

Raycaster

Bundle contents

Writeup is located at /writeup.pdf.

The binary can be found at /assignment-1. Run ./assignment-1 --help to see how to use it. The binary has been built using the Rust Docker image, which should have an environment similar to CSELabs. If there is trouble running the binary, try building from source, as documented below.

Examples are found in the examples directory. The text files are the input sources, and the ppm files are the corresponding outputs. They have been generated by running this program. For convenience, pngs have also been provided using imagemagick.

Building from source

The Makefile currently uses Docker to produce a more consistent build. If you have a Rust+Cargo toolchain installed locally, it's also possible to build the source using just:

cargo build --release

The binary will be found in target/release.