aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/fractals.c
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2024-04-20 03:01:37 -0400
committerJP Appel <jeanpierre.appel01@gmail.com>2024-04-20 03:02:29 -0400
commit627f4641269d273f3bbf76e679381924115aaf16 (patch)
tree2220e884d6b51b84f0102554822f8d2a92230718 /src/fractals.c
parent5cba5bc63de403c779fd4fa762216280d4396444 (diff)
moved lattice to complex
Diffstat (limited to 'src/fractals.c')
-rw-r--r--src/fractals.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/fractals.c b/src/fractals.c
index 1e27b9c..3c131f3 100644
--- a/src/fractals.c
+++ b/src/fractals.c
@@ -9,27 +9,6 @@
#include "fractals.h"
-/*
- * Converts a grid point into an complex number
- */
-double complex lattice_to_complex(const size_t index, const size_t x_res, const size_t y_res) {
- const double x_min = -2.0;
- const double x_max = 2.0;
- const double y_min = -2.0;
- const double y_max = 2.0;
-
- const double x_step = (x_max - x_min) / (double)x_res;
- const double y_step = (y_max - y_min) / (double)y_res;
-
- const size_t x_index = index % x_res;
- const size_t y_index = index / x_res;
-
- const double x = x_min + x_index * x_step;
- const double y = y_min + y_index * y_step;
-
- return x + y * I;
-}
-
int main(const int argc, char *argv[]) {
//default values