Package mazealgo.model.algorithms.maze3D


package mazealgo.model.algorithms.maze3D
  • Class
    Description
    Base class for 3D maze generators.
    A 3D maze generation algorithm.
    A 3D maze: an int cube where 1 is a wall and 0 is a passable cell, with a start position and a goal position.
    A state in the 3D maze search problem: a (depth, row, column) cell.
    Iterative randomized DFS (recursive backtracker) extended to 3D.
    A depth/row/column position inside a Maze3D.
    Object Adapter that exposes a Maze3D as an ISearchable.