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
- Host: GitHub
- URL: https://github.com/bengesoff/ray-tracing-in-one-weekend
- Owner: bengesoff
- Created: 2022-10-01T17:34:23.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-07T09:05:04.000Z (over 2 years ago)
- Last Synced: 2025-02-12T06:58:35.502Z (3 months ago)
- Language: Rust
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```