0.1.2 • Published 5 years ago

mandelbrot-wasm v0.1.2

Weekly downloads
4
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

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');

wasm.draw(ctx, canvas.scrollWidth, canvas.scrollHeight, 0.0, 0.0);

WIP

  • Zooming
  • Rendering around a specific point on the plane (the last 2 params dont have a meaning atm)
  • Render with WebGL instead of HTML5 Canvas
  • Add more input Options for
    • color palettes (predefined)
    • max iterations
  • Update the dimensions
0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago