This commit is contained in:
Shuo Feng 2024-01-28 20:14:37 -05:00
commit de866d23bf
Signed by: sfeng
GPG key ID: 1E83AE6CD1C037B1
28 changed files with 46878 additions and 0 deletions

9
external/simpleppm.h vendored Normal file
View file

@ -0,0 +1,9 @@
#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();