Ce projet illustre le fractal de Mandelbrot en Python avec Pygame.
Regardez l’animation du zoom fractal (Mandelbrot & Julia) sur YouTube : Vidéo Zoom Fractal
Le code teste la formule:
pour chaque point (coordonnées x et y) de l'écran.En fonction du point, la suite peut diverger ou converger, et on lui attribue une couleur selon la vitesse à laquelle elle diverge.
Le résultat est une image fixe du fractal de Mandelbrot avec une palette de couleurs représentant le comportement des points dans le point complexe.

This project illustrates the Mandelbrot fractal in Python using Pygame.
Watch the fractal zoom animation (Mandelbrot & Julia) on YouTube: Fractal Zoom Video
The code tests the formula:
for each point (x and y coordinates) on the screen. Depending on the point, the sequence can diverge or converge, and it is assigned a color based on the speed at which it diverges.
The result is a still image of the Mandelbrot fractal with a color palette representing the behavior of the points within the complex point.
