summaryrefslogtreecommitdiff
path: root/mandel.h
diff options
context:
space:
mode:
authorTom Smeding <tom.smeding@gmail.com>2020-05-15 12:24:47 +0200
committerTom Smeding <tom.smeding@gmail.com>2020-05-15 12:24:47 +0200
commitb3c100e3c696aa8c621c1289a7fd597d6345a265 (patch)
tree11a1432b0c162adc7d5b7bd5f14b3bb10a100700 /mandel.h
parent990618b35f17a61cf8cae1b73ab2154ed1f897dd (diff)
p * z^5 + q * z^2 + cHEADmaster
Diffstat (limited to 'mandel.h')
-rw-r--r--mandel.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/mandel.h b/mandel.h
index 99d4b60..e154328 100644
--- a/mandel.h
+++ b/mandel.h
@@ -1,9 +1,14 @@
#pragma once
+#include <cstddef>
+#include <cstdint>
+
+
struct Params {
double cx, cy, imgw;
int16_t maxit;
+ int par1, par2;
};
struct Mandel;