Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 519 Bytes

README.md

File metadata and controls

11 lines (7 loc) · 519 Bytes

raytracing-rust

Implementation of Peter Shirley's "Ray Tracing in One Weekend" in the Rust language.

This came from the book

I tried to make it as idiomatic as possible. Takes hours to render a single image as it is single-threaded (so far!)

TODO:

  • Multithreading
  • Replace my Vec3 implementation with something like cgmath