An open API service indexing awesome lists of open source software.

https://github.com/lukasjhan/simple-ray-tracer


https://github.com/lukasjhan/simple-ray-tracer

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# simple ray tracer

This is a simple ray tracer written in C++.

## Build

```bash
mkdir build
cd build
cmake ..
make
```

## Run

```bash
./raytracer
```

## Check Output

```bash
open output.ppm
```

## Change to png

```bash
# using imagemagick
convert output.ppm output.png
```