pub fn generate(width: isize, height: isize) -> Maze
Expand description

Most common maze generation technique, recursively creating paths to unvisited cells, each time choosing next direction at random.