Skip to content

Generate an image file that contains a randomly generated maze

License

Notifications You must be signed in to change notification settings

logicguy1/Maze-Generator-V2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Maze-Generator-V2

Generate an image file that contains a randomly generated maze

Maze

Change the size of each pixel at line 76

75 | def translate_grid(self, grid):
76 |     pixelSize = 20 # Set the size of each pixel (in pixels lol)
77 |     size = (grid.shape[1] * pixelSize * 2 - pixelSize, # Define the size of the canvas
78 |             grid.shape[0] * pixelSize * 2 - pixelSize)

About

Generate an image file that contains a randomly generated maze

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages