new: render.h

This commit is contained in:
2025-12-07 05:00:19 -05:00
parent 265cace593
commit af45e3de24
2 changed files with 5 additions and 2 deletions

View File

@@ -3,8 +3,7 @@
#include <gsl/gsl_rng.h> #include <gsl/gsl_rng.h>
#include <gsl/gsl_spline.h> #include <gsl/gsl_spline.h>
#include <gsl/gsl_monte_miser.h> #include <gsl/gsl_monte_miser.h>
#include "common.h" #include "render.h"
#include "init.h"
typedef struct { typedef struct {
const System *system; const System *system;

4
src/render.h Normal file
View File

@@ -0,0 +1,4 @@
#include "common.h"
#include "init.h"
int render(System *system, double **buffer, int pixel_render_max, double pixel_render_err, double chi_rela_err);