Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 779 Bytes

File metadata and controls

23 lines (14 loc) · 779 Bytes

RayTracer

This is a simple raytracer created by MattFor, inspired by the guide Ray Tracing in One Weekend.

Getting Started

To generate an output image, follow these steps:

  1. Navigate to the project directory in PowerShell.

  2. Use the following command:

    .\cmake-build-debug\RayTracer.exe | Out-File -FilePath "../image_result.ppm" -Encoding ASCII
    
  3. Open the resulting file (image_result.ppm) using an image viewer such as XnView.

More to come

I'll be working with the other RayTracing in a ... guides to make this program better!

Attributions

This project was inspired by Ray Tracing in One Weekend.