This #genuary28 image is made entirely of HTML `<div>` elements, drawn using a short JavaScript that calculates a Julia Set fractal. A screenshot of the page is shown in this post - for the original, go to https://codeismycanvas.art/posts/genuary26/juliadiv.html.
For #genuary4 - Low Resolution - I made a Julia set fractal with resolution animated starting at 6x6 pixels, increasing to 180x180 and back.
Inflector Gadget v0.10 released, with bugfixes to the perturbation implementation (thanks FractalLion) and support for variable wavyness everywhere:
source tarball and windows binaries available here:
https://mathr.co.uk/web/inflector-gadget.html#v010
web version available here:
example:
#InflectorGadget #MandelbrotSet #JuliaSet #Fractals #MathArt
Forgotten place
Real: -0.744539860355908380
Imag: 0.121723773894424824
Size ~ 6.0E-16
And finally for now, a cool embedded Julia set c:
Real: -1.86112396982365405789831978597414318499890093266752759656127899
Imaginary:
-0.00140519482120072490578723682118530643205851336253995142974416419
Size: 1.7516230804060213e-46
#FractalFriday #hybrid #JuliaSet
z_{n+1} = z_n^2 + c_{n mod 3}
Inflector Gadget 0.9 is released!
https://mathr.co.uk/web/inflector-gadget.html
The most visible change since 0.8 (among many) is a version for Web built with Emscripten. Also: wavy hybrid Julia sets.
Try it online:
Get source code and binaries for Windows and Web here:
https://mathr.co.uk/web/inflector-gadget.html#Download
#InflectorGadget #MandelbrotSet #JuliaSet #fractals #MathArt
wavy iteration bands that just touch each other, for hybrid quadratic Julia set where the c value varies during iteration (e.g. looping several values).
calculation inner loop snippet:
```
vec2 C1 = C;
C = c[iteration % count];
vec2 origin = C1 + vec2(100.0, 0.0);
float o = length(origin);
float e = (1.0 + 2.0 * o) / 2.0;
float r = sqrt(e * e - o * o + o) + e;
if (length(z - origin) > r) break; // escaped
z = cSqr(z) + C;
```
#JuliaSet #hybrid #EscapeTime #fractals #MathArt #CreativeCoding #GLSL #ComplexDynamics #maths
don't ask me how I derived r, I forgot to save my workings from a couple of years ago
tune 100+0i to taste (may break when small)
Beyond Z²+C, Plot Any Fractal
#HackerNews #Fractals #Exploration #FractalArt #JuliaSet #HackerNews #Coding