Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 637 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 637 Bytes

Basic Ray Tracing (BRT)

An implementation of a CPU Ray Tracing engine, created by following the "Ray Tracing in One Weekend" tutorial (actually, it took me nearly one week for the first part).

Sample render

Build

Use cmake and make to build the project:

cd build
cmake ..
make

Usage

Simply run the build executable, and place the output PPM on a file:

build/BasicRayTracing > output.ppm

Resources