An open API service indexing awesome lists of open source software.

https://github.com/setanarut/maze

2D Maze generator in Go
https://github.com/setanarut/maze

go golang maze maze-algorithms maze-creation maze-generation maze-generator

Last synced: 9 months ago
JSON representation

2D Maze generator in Go

Awesome Lists containing this project

README

          

## maze

maze is maze generator package for Go language.
The maze walls are of the grid cell type. (`[][]T // 0: path, 1: wall`)

`rect` is a subpackage for generating maze walls of type `[]image.Rectangle`

```Go
import "github.com/setanarut/maze/rect"
```