Conjunto de Mandelbrot en C# .Net, Fractales, Mandelbrot Set

En este video te explicare el conjunto de mandelbrot, y como se puede representar en C# .Net.

Código

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
 
        private void Form1_Load(object sender, EventArgs e)
        {
            MandelbrotSet();
 
        }
 
        private void MandelbrotSet()
        {
            int width = pictureBox1.Width;
            int heigh = pictureBox1.Height;
            Bitmap bmp = new Bitmap(width,heigh);
 
            for (int row=0;row<heigh;row++)
            {
                for (int col=0;col<width;col++)
                {
                    double c_re = (col - width / 2.0) * 4.0 / width;
                    double c_im = (row - Height / 2.0) * 4.0 / heigh;
                    int iteracion = 0;
                    double x = 0, y = 0;
 
                    while (iteracion<1000 && ((x*x)+(y*y))<=4)
                    {
                        double x_temp = (x * x) - (y * y) + c_re;
                        y = 2 * x * y + c_im;
                        x = x_temp;
                        iteracion++;
                    }
 
                    if (iteracion < 1000)
                        bmp.SetPixel(col, row, Color.FromArgb(iteracion%128,iteracion%50*5,iteracion%10));
                    else
                        bmp.SetPixel(col, row, Color.Black);
                }
            }
 
            pictureBox1.Image = bmp;
 
        }
    }

Autor: Héctor de León

Desarrollador de software, lector compulsivo.