Skip to content

Instantly share code, notes, and snippets.

@absurd
absurd / sierpinski.js
Created January 11, 2013 12:58
Draws the fractal Sierpinski Triangle on an html5 canvas element via the Chaos Game method.
drawflag = false;
i = -10;
maxi = 1000000;
function toggleDraw() {
button = document.getElementById("button");
drawflag = !drawflag;
if (!drawflag) {
button.innerHTML = "Resume";
} else {