Ray Tracing in One Weekend

This repository contains my rewrite of the code in the Ray Tracing in One Weekend book by Peter Shirley. For now there are implementations in Rust and C++.

Building and Running

C++

cd C++
./build.sh
./output > image.ppm

Rust

cd Rust
cargo build
cargo run --release > image.ppm

Final Scene

final scene Rust