TURBOWARP NECESSARY: https://turbowarp.org/projects/1195964499/ turbowarp is a scratch mod that makes slow projects like this one run fast by compiling the code into Javascript. WASDQE TO MOVE R FOR HIGH QUALITY RENDER if the high quality render seems to crash, then wait - it will uncrash after a couple tens of seconds. Be carefull with the sliders, most combinations aren't good! What this is: So basically, if instead of the standard Mandelbrot fractal: Set Z to RZ, IZ; set C to X, Y And repeat Z=Z^2+C - until |Z|>4 You do this: Set Z to X, Y; set C to RC, IC And repeat C = (Z^2+C) + (C^2+F) - until |C|>4 Which is equivalent to Set C to XY; set Z to RZ, IZ And repeat Z = (C^2+Z) + (Z^2+F) - until |Z|>4 Then you get: A fractal that closely resembles this: https://en.wikipedia.org/wiki/Julia_set However, unlike the julia set, where you set some starting parameters and then it's just a normal fractal repeating itself exactly - THIS fractal has the feature of a mandelbrot: You can zoom in, and the zoom-in wouldn't be a exact copy of itself - it would be itself, but slightly warped. Because of this, you can keep zooming in and you will get more and more complex patterns - Like in the mandelbrot fractal. Thanks for viewing :D original juliter idea: https://fractalfun.es/juliter.php?i=en Also, this is a pretty simple project. Coded in 1&1/2 a day.