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
- Host: GitHub
- URL: https://github.com/setanarut/maze
- Owner: setanarut
- License: mit
- Created: 2025-06-12T10:17:01.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-24T20:39:45.000Z (12 months ago)
- Last Synced: 2025-07-01T13:10:00.244Z (12 months ago)
- Topics: go, golang, maze, maze-algorithms, maze-creation, maze-generation, maze-generator
- Language: Go
- Homepage: https://pkg.go.dev/github.com/setanarut/maze
- Size: 18.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
```