Subject is presented in the en.subject.pdf
make
to compile this project../fractol <name>
Names fractals:
- Mandelbrot
- Julia
- Burning Ship
Construction is carried out using complex numbers:
typedef struct s_complex
{
double re;
double im;
} t_complex;