Ecosyste.ms: Awesome
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: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/lukasjhan/simple-ray-tracer
- Owner: lukasjhan
- Created: 2023-04-17T00:38:13.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-04-17T00:38:25.000Z (over 1 year ago)
- Last Synced: 2024-04-12T05:09:12.989Z (7 months ago)
- Language: C++
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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
```