mandelbrot-set
Version:
Web components and a web worker for painting Julia and Mandelbrot sets on a web page.
14 lines (10 loc) • 323 B
JavaScript
import { SetGraphElement, observedAttributes } from './set-graph.js'
class MandelbrotSetGraphElement extends SetGraphElement {
constructor () {
super('mandelbrot')
}
static get observedAttributes () {
return observedAttributes
}
}
customElements.define('mandelbrot-set-graph', MandelbrotSetGraphElement)