Neon is a ray tracing renderer implemented in Rust, inspired by the "Ray Tracing in One Weekend" and "Ray Tracing: The Next Week" book series by Peter Shirley.
This project aims to create a fast, idiomatic Rust implementation of the ray tracing concepts presented in the Ray Tracing book series. The goal was not just to port the C++ code to Rust, but to take advantage of Rust's performance characteristics and safety features to create a more efficient and maintainable renderer.
- Basic ray tracing capabilities
- Geometry primitives (spheres, quads)
- Material system (diffuse, metal, dielectric)
- Texture mapping
- BVH (Bounding Volume Hierarchy) Tree for performance optimization
- Motion blur
- Perlin noise
- Multi-threading support
- Rust >= 1.85
Clone the repository:
git clone https://github.com/kTrzcinskii/neon.git
cd neon
Build the project:
cargo build --release
Run the renderer:
cargo run --release [output] [scene] [samples_per_pixel]
Where:
scene
is the scene to render, available scenes are:- spheres
- moving_spheres
- two_checker
- earthamp
- perlin_noise
- quads
- simple_light
- cornell_box
- fog_cornell_box
- all_effects
output
is path to output file. This repo uses image crate for image handling and you can check supported file formats here.samples_per_pixel
isu32
representing how many rays are sampled per each pixel (the bigger the value the more accurate the final image). This argument is optional and each scene has its predefined default value.
Example:
cargo run --release output.jpg "all_effects"
This will generate a file named output.jpg
in the project directory.
cargo run --release output.jpg "all_effects" 256
This will generate same file, but will use only 256 rays per pixel for this scene (default value is 5000
).
This implementation draws heavily from the concepts in "Ray Tracing in One Weekend" and "Ray Tracing: The Next Week" by Peter Shirley, but with a focus on Rust idioms and performance optimizations:
- Uses Rust's ownership model to avoid unnecessary copying
- Takes advantage of Rust's strong type system
- Implements multi-threading using Rayon
- Uses pattern matching over dynamic dispatch wherever possible
Here are some example renderings created with Neon: