UNPKG

mandelbrot-set

Version:

Web components and a web worker for painting Julia and Mandelbrot sets on a web page.

24 lines (23 loc) 1.07 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"> <meta name="description" content="Renders Mandelbrot sets with controls for panning, zooming and configuring the graph."> <title>Mandelbrot Set Composite</title> <link rel="icon" href="data:,"> <link rel="stylesheet" href="assets/mini-default.min.css"> <link rel="stylesheet" href="assets/demo.css"> </head> <body> <h1>Mandelbrot Set Composite</h1> <p>A web component and a web worker for painting the Mandelbrot set on a web page, including controls for panning, zooming and configuring the graph. See also <a href="julia.html">Julia</a> sets, the <a href="mandelbrot.html">Mandelbrot</a> set and the <a href="https://github.com/prantlf/mandelbrot-set">project sources</a>.</p> <mandelbrot-set-computer src="scripts/computer.js"></mandelbrot-set-computer> <mandelbrot-set></mandelbrot-set> <script src="scripts/mandelbrot-all.min.js" type="module"></script> </body> </html>