samuel-emrys / raytracer

A simple raytracer
0 stars 0 forks source link

Write to specified file rather than rely on bash's > operator #5

Closed samuel-emrys closed 2 years ago

samuel-emrys commented 2 years ago

Currently this program relies on usage of bash's > operator to redirect stdout to a file. This is less than ideal. This ticket is to refactor existing ppm output to write it to a file. This should utilise the std::filesystem api to ensure the code remains operating system agnostic.