Package maze.structure

Provides classes define the structure of Maze.

See:
          Description

Class Summary
Maze Describes the maze as a grid of cells with a given geometry and filling algorithm.
MazeCell A single Cell within the Maze.
MazeCellEmpty A Cell which is empty, and unused.
MazeCellWall A Cell which is used and has walls.
 

Package maze.structure Description

Provides classes define the structure of Maze.

A Maze is a 2-D grid of individual MazeCells. The interpretation of the coordinate system, however, is delegated to the maze.geometry package which provides for Rectangular or Hexagonal grids.

A MazeCell has two subclasses.