Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/a1exxd0/ray-tracing-engine
https://github.com/a1exxd0/ray-tracing-engine
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/a1exxd0/ray-tracing-engine
- Owner: a1exxd0
- Created: 2024-06-16T13:00:10.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-06-18T13:27:41.000Z (7 months ago)
- Last Synced: 2025-01-01T02:02:30.611Z (26 days ago)
- Language: C++
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ray tracing engine
Added CI/CD.# build notes
Set up environment:
```sh
# for running tests
sudo apt-get update
sudo apt-get install libgtest-devmkdir build
cd build && cmake ..
```
Install [Google Benchmark](https://github.com/google/benchmark).
Then you have 2 options for builds:
```sh
# ensure you are in build directory# default standard (slow run) build
cmake --build .# for long runs
cmake --build . --config release
```
Then when running the executable:
```sh
./main > img.ppm
eog img.ppn
```