aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/grids.h
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2024-04-20 23:49:21 -0400
committerJP Appel <jeanpierre.appel01@gmail.com>2024-04-20 23:49:21 -0400
commit7516add571888d32d3d33364a35cd8148ed3bff6 (patch)
tree181d183354f69dc096aaba1e4e6172a862b7f981 /src/grids.h
parentd68fafdb137a52384d5b405ee288e79bff9f9e8a (diff)
add zoom feature to grids and shifted code around
Diffstat (limited to 'src/grids.h')
-rw-r--r--src/grids.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/grids.h b/src/grids.h
index 8c9db91..bba6f68 100644
--- a/src/grids.h
+++ b/src/grids.h
@@ -28,6 +28,9 @@ bool grid_equal(const grid_t* grid1, const grid_t* grid2);
bool grid_allclose(const grid_t* grid1, const grid_t* grid2, const size_t max_error);
double complex grid_to_complex(const grid_t* grid, const size_t index);
+void zoom_grid(grid_t* grid, const double magnification);
+void print_grid_info(const grid_t* grid);
+void print_grid(const grid_t* grid, const size_t iterations);
int write_grid(FILE* restrict file, const grid_t* grid);
grid_t* read_grid(FILE* restrict file);