/* * 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_ */