diff options
author | Leonard Kugis <leonardkugis@gmail.com> | 2018-01-16 01:21:27 +0100 |
---|---|---|
committer | Leonard Kugis <leonardkugis@gmail.com> | 2018-01-16 01:21:27 +0100 |
commit | c4b5e0a48835b6bdbf4d3d92fd42b29a22662ed4 (patch) | |
tree | 807f2c1ac0010ce91f5560d6bf852ecca45a221a /src/sets.h | |
parent | 9d46c7e44b0c8e0625894dbb688e9b2804d83c9d (diff) |
Mandelbrot drawing possible
Diffstat (limited to 'src/sets.h')
-rw-r--r-- | src/sets.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/sets.h b/src/sets.h new file mode 100644 index 0000000..76d3ace --- /dev/null +++ b/src/sets.h @@ -0,0 +1,18 @@ +/* + * sets.h + * + * Created on: 15.01.2018 + * Author: Superleo1810 + */ + +#ifndef SETS_H_ +#define SETS_H_ + +#include "defs.h" + +u32 mandelbrot_s(double x, double y, u32 iterations); +u32 mandelbrot_r(double x, double y, u32 iterations); +u32 _mandelbrot_r(double x, double y, double zx, double zy, u32 n, u32 iterations, double threshold); +u32 julia(double x, double y, u32 iterations); + +#endif /* SETS_H_ */ |