1

Julia Morphism

Continuous morphing of the Julia set boundary as the complex parameter c(t) traces a closed loop through the Mandelbrot parameter space.

Playground
60 FPS Canvas 2D
Click + Drag to interact with field

Live Parameters

Morph Velocity 0.4
Parameter space orbit speed
Max Iterations 24
Fractal escape depth
ƒ

Mathematical Formulation

65 chars high
Analytical Equation
z_{n+1} = z_n^2 + c(t), \quad c(t) = -0.8 + 0.15 e^{i \omega t}
Compact Formula
z = z² + (-0.8 + 0.15 e^(iωt)), iter_escape = min(k | |z_k| > 2)
Renderer Logic
const tempX = zx * zx - zy * zy + cr;
zy = 2 * zx * zy + ci;
zx = tempX;
iter++;
Open in Playground Zero Dependencies • Standalone

Mathematical Tags

#fractal #julia-set #complex-numbers #chaos #mandelbrot #experimental
Author: Math Art Core Target: 60 FPS

Export & Embed: Julia Morphism

4K PNG Snapshot

High-resolution single frame render

WebM Video (5s Loop)

60 FPS browser-captured stream

HTML Iframe Embed

<iframe src="https://art.fazleyrabbi.xyz/embed/julia-morph" width="500" height="500" frameborder="0" loading="lazy"></iframe>
ESC
↑↓ Navigate Select
25 Mathematical Artworks