From c313369d82472e23f367aed194f3c0d429df9dac Mon Sep 17 00:00:00 2001 From: Copilot <223556219+Copilot@users.noreply.github.com> Date: Wed, 5 Aug 2026 16:50:48 +0000 Subject: [PATCH] Add self-contained Mandelbrot HTML renderer Adds mandelbrot.html, a standalone canvas-based Mandelbrot set viewer with no build step or dependencies. Supports pan (drag), zoom (scroll wheel, pinch, double-click), and adaptive iteration counts as you zoom in, with chunked rendering via requestAnimationFrame to keep the UI responsive. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- mandelbrot.html | 322 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 322 insertions(+) create mode 100644 mandelbrot.html diff --git a/mandelbrot.html b/mandelbrot.html new file mode 100644 index 000000000..b98719d06 --- /dev/null +++ b/mandelbrot.html @@ -0,0 +1,322 @@ + + + + +Mandelbrot Set Renderer + + + + +
+
Mandelbrot Set
+
Scroll / pinch to zoom · drag to pan · double-click to zoom in
+
Center: -0.5, 0
+
Zoom: 1.00x
+
Iterations: 100
+
+ + + +