This project is a simple raytracer implemented in C++ based on the "Understandable RayTracing in 256 lines of bare C++" tutorial by Dmitry V. Sokolov.
- Renders spheres and a plane (chessboard)
- Implements Phong reflection model
- Supports diffuse and specular lighting
- Calculates shadows
- Handles reflections and refractions
- Uses an environment map for background
- Image writing to disk
- Basic ray tracing for a single sphere
- Multiple sphere rendering
- Lighting implementation
- Specular lighting
- Shadow calculation
- Reflections
- Refractions
- Plane (chessboard) rendering
- Environment map integration
To compile and run the project:
g++ -std=c++11 simpleraytracing.cpp -o simpleraytracing
./simpleraytracing
The program will generate an output image file named out.jpg
.
This project uses the stb
library for image handling, particularly for the environment map feature.
You can modify the following parameters in the simpleraytracing.cpp
file:
- Image dimensions (width and height)
- Field of view (fov)
- Maximum recursion depth for reflections and refractions
- Scene objects (spheres and plane)
- Light sources
This project is based on the tutorial by Dmitry V. Sokolov. Special thanks to him for providing an understandable approach to raytracing.
This project is open source and available under the MIT License.