Quote:
Originally Posted by Tigairius
Is the number of spaces in your maze something user-defined?
|
The width and height are user-defined, and number of spaces = width * height. I actually meant to say number of walls (because the important part of the algorithm looks at each wall once), but the number of walls is directly proportional to the number of spaces, regardless.
Quote:
Originally Posted by xAndrewx
very cool- but there isn't an exit!! 
|
lol, that's your job.
Quote:
Originally Posted by salesman
When the maze is generated, there will be exactly one path between any two points in the maze. Because of this, you can pick any two points to be your start and end locations of the maze. I recommend choosing opposite corners!
|