This is a barebones raycaster in C++.
https://raytracing.github.io/books/RayTracingInOneWeekend.html#overview.
To build the project with clang
, run:
./scripts/clangBuild.sh
This will compile the source code and output the binary to build/main
.
To render a single image, run:
./scripts/render.sh
The output .ppm image file will be written to output/render.ppm
.
- C++14 compiler (e.g., clang++)
- Bash shell (for running scripts)