How to generate a maze using JavaScript and HTML5 canvas and a Cellular Automaton algorithm?
Generating a random map on a canvas is fun. In this article you will learn how to generate a random map or maze on an HTML5 canvas. We will use a model called Cellular Automaton.
While there are many ways …