Click to zoom in, press r to reset, press j to make a julia set at the cursor, press m to return to the mandelbrot set, and press e for an example.
coloring method: (log10(iter)^3/20)% The bailout formula is the formula used to determine if the point in the current iteration is going to be outside of the set. Normally, this formula is x²+y²>4 (is the point outside of a circle of radius 2), but here, this formula is instead |y|>2 (does the point have a distance greater than 2 to the x-axis). This is what makes this image different from other images of the mandelbrot set.