Use the arrow keys to change the highlighted region's center Press Z to move it to the mouse Press Space to begin rendering Press E to manually enter coordinates and a zoom value. Click on the buttons at the bottom to change parameters.
Inspired by @twins_paradox's Mandelbrot Explorer. :) **Fixed** Z <=> z^3 + c That simple equation is what constitutes this exquisite variation of the Mandelbrot. In Scratch's operators, this would be translated as: new x = x^3 - 3*x*y^2 + a new y = 3*x^2*y - y^3 + b where a and b are the center coordinates of the rendered region.