Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 684 Bytes

README.md

File metadata and controls

25 lines (15 loc) · 684 Bytes

Running minotaur

AMaze

Maze Solving

  • Recursive backtracker (so-called perfect maze creation algorithm) maze generator based on the window.innerWidth and window.innerHeight.
  • Tremaux maze solver.
  • All written in CoffeeScript because there is never enough coffee.

Running

Just open index.html.

Compiling

When in the project root folder type: coffee -m -w -c -o lib/ coffee/

and refresh index.html (CTRL+R is good to remove cached content).

Reference

Think Labyrinth describing variation of maze solvers and generators