Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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


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

Last synced: 21 days 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
```