Sierpinski 140byt.es

by Ondřej Žára

HTML

<!doctype html>
<html>
    <body>
        <canvas id="canvas" width="500" height="500"></canvas>
    </body>
</html>

JavaScript

var sierpinski = 
    
function(c,s,i,a,b,r){for(;i--;r=Math.random()*3)c.fillRect(a=(r>2)*s+a>>1,b=(r<1)*s+b>>1,1,1)}
    
sierpinski(document.getElementById("canvas").getContext("2d"), 500, 100000)