csciarcs circuit banner

A mesmerizing application that utilizes random static and zooms it into a unique visual experience. (hold down over the static to zoom)

What's Happening?

function start() {
 setupCanvas();
 drawStatic();
}

function listenForMouseHold() {
 if(mousedown) startZoom();
 else stopZoom();
}

function trackZoom() {
 if(notFullZoom) return;
 showFinalHex();
 stopListening();
}

See the full project on my GitHub.

#######