aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Phillips <dbphillipsnz@gmail.com>2015-06-10 15:28:39 +1200
committerDavid Phillips <dbphillipsnz@gmail.com>2015-06-10 15:28:39 +1200
commitc98f1b9ca4ab0c3f1d36087d7b4d9c17d2190685 (patch)
tree2bf93effd217dbf30c7c93fc1008a55fda719b01
parentb0401d624b092eed6a2e9d7a4b1be9ccf59c0de4 (diff)
downloadfractal-gen-c98f1b9ca4ab0c3f1d36087d7b4d9c17d2190685.tar.xz
Fixed broken algo
-rw-r--r--algorithms.h1
-rw-r--r--fractal-gen.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/algorithms.h b/algorithms.h
index d8d2935..0f72ffd 100644
--- a/algorithms.h
+++ b/algorithms.h
@@ -3,6 +3,7 @@
void *generate_mandelbrot_section(void *section);
void *generate_burning_ship_section(void *section);
+void *generate_burning_ship_lattice_section(void *section);
void *generate_tricorn_section(void *section);
#endif
diff --git a/fractal-gen.c b/fractal-gen.c
index 10803d9..7fe7b58 100644
--- a/fractal-gen.c
+++ b/fractal-gen.c
@@ -17,6 +17,7 @@ int main(int argc, char **argv)
struct section_generator generators[] = {
{ "mandelbrot-gen" , &generate_mandelbrot_section },
{ "burning-ship-gen" , &generate_burning_ship_section },
+ { "burning-ship-lattice-gen" , &generate_burning_ship_lattice_section },
{ "tricorn-gen" , &generate_tricorn_section }
};