Skip to content

Latest commit

 

History

History
52 lines (36 loc) · 1.8 KB

README.md

File metadata and controls

52 lines (36 loc) · 1.8 KB

42-fract-ol

Discover 2D programming and the psychedelic universe of fractals in this project, using minilibX.

Subject is presented in the en.subject.pdf

Usage

  • make to compile this project.
  • ./fractol <name>

Names fractals:

  • Mandelbrot
  • Julia
  • Burning Ship

Mandelbrot

Mandelbrot

Julia

Julia

Burning Ship

Burning_Ship

Construction is carried out using complex numbers:

typedef struct		s_complex
{
	double			re;
	double			im;
}			t_complex;

Credits