0.1.3 • Published 5 years ago

@juliankaindl/mandelbrot-wasm v0.1.3

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
5 years ago

What's working

  • Initial Render of the Set on Re = -2; 2
  • Coloring based on iterations
  • Rendering to a given HTML5 Canvas Element
  • Render around a given point on the plane
  • Simple zooming

How to use

npm install @juliankaindl/mandelbrot-wasm

Assuming all calls are async

import * as wasm from "@juliankaindl/mandelbrot-wasm";

const canvas = document.getElementById('canvas');
const ctx = canvas.getContext('2d');

// draw(ctx, width, height, realPart, imaginaryPart, zoomLvl)
wasm.draw(ctx, canvas.scrollWidth, canvas.scrollHeight, 0.0, 0.0, 1.0);

WIP

  • Proper Zooming
  • Render with WebGL instead of HTML5 Canvas
  • Add more input Options for
    • color palettes (predefined)
    • max iterations
  • Update the dimensions