Just click the flag. Turbo mode is not needed I hope you enjoy it :D, you can also click on a point to zoom in! The story: The Mandelbrot Set is a really nice looking fractal pattern. Fractals are patterns that repeat infinitely if you zoom in on them. From https://en.wikipedia.org/wiki/Mandelbrot_set The Mandelbrot Set is a set of points determined by a formula involving complex numbers. Complex numbers have an imaginary part that includes the square root of -1 which can't exist for real numbers. We use real numbers x and y to represent the real and imaginary parts of the numbers in the Mandelbrot Set so that we can graph/draw them. The Mandelbrot Set can be defined using iterations of the formulae: x = x^2 - y^2 + x0 (real part of z^2 + c) y = 2xy + y0 (imaginary part of z^2 + c) A point is in the Mandelbrot set (with c = 2) if the distance from the origin is less than 2 after infinite iterations of the formulae. We approximate the Mandelbrot Set by doing less than infinite iterations.