An open API service indexing awesome lists of open source software.

https://github.com/bengesoff/ray-tracing-in-one-weekend

Rust implementation of https://raytracing.github.io/books/RayTracingInOneWeekend.html
https://github.com/bengesoff/ray-tracing-in-one-weekend

Last synced: about 2 months ago
JSON representation

Rust implementation of https://raytracing.github.io/books/RayTracingInOneWeekend.html

Awesome Lists containing this project

README

        

# Ray Tracing In One Weekend

My implementation of the [Ray Tracing In One Weekend](https://raytracing.github.io/books/RayTracingInOneWeekend.html) book.
Written in basic Rust as an exercise.
Outputs a PPM-encoded image to stdout.

To run:

```bash
cargo run > image.ppm
```

Then on MacOS:

```bash
open image.ppm
```