mirror of
https://github.com/vonhyou/ray-tracer-comp371.git
synced 2025-06-08 15:31:59 +00:00
9 lines
189 B
C++
9 lines
189 B
C++
|
|
#include <fstream>
|
|
#include <cstdio>
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
int save_ppm(std::string file_name, const std::vector<double>& buffer, int dimx, int dimy);
|
|
|
|
int test_save_ppm();
|