Turbo mode highly recommended (shift+green flag) Turbowarp if you have a slow computer: https://turbowarp.org/634107444 This uses pixel for pixel rendering, no techniques to speed up drawing. This renders the Mandelbrot set. Take a point, c, on the complex plain, create a new point, z, at the same place, keep updating z with this equation, Z^2 + C, and if it eventually drifts off to infinity, then it is not part of the set and it gets assigned a colour depending on how quickly it drifts off, if it falls into a cycle or something else, it is part of the set and it gets coloured black. This has its own list based system to deal with complex numbers because scratch can't handle them. This is a very simple generator, no fancy zooms yet but they wouldn't be too hard.