Difference between revisions of "Python - Maze Generation Assignment"

From WLCS
(Created page with "=== Objective === === Resources === === Directions === === Testing ===")
 
Line 1: Line 1:
=== Objective ===
+
== Objective ==
 +
* You will create a maze generation program
 +
* You will use create Python classes that represent a MazeRoom and a Maze
  
=== Resources ===
+
== Resources ==
 +
* [[Media:Stacks.ppt]]
 +
* [http://www.csanimated.com/animation.php?t=Stack Stack - CS Animated]
 +
* [https://en.wikipedia.org/wiki/Maze_generation_algorithm#Depth-first_search Depth-first Search]
 +
* [https://en.wikipedia.org/wiki/Maze_generation_algorithm#Recursive_backtracker Recursive backtracker]
 +
* [http://gwydir.demon.co.uk/jo/maze/makemaze/index.htm Maze Designer]
  
=== Directions ===
+
== Directions ==
 +
=== MazeRoom class ===
  
=== Testing ===
+
=== Maze class ===
 +
 
 +
== Testing ==

Revision as of 12:29, 16 May 2013

Objective

  • You will create a maze generation program
  • You will use create Python classes that represent a MazeRoom and a Maze

Resources

Directions

MazeRoom class

Maze class

Testing