Interface IMaze3DGenerator

All Known Implementing Classes:
AMaze3DGenerator, MyMaze3DGenerator

public interface IMaze3DGenerator
A 3D maze generation algorithm.
  • Method Summary

    Modifier and Type
    Method
    Description
    generate(int depth, int row, int column)
    Generates a 3D maze with the given depth, rows and columns.
    long
    measureAlgorithmTimeMillis(int depth, int row, int column)
    Returns how long generate(depth, rows, columns) takes, in milliseconds.
  • Method Details

    • generate

      Maze3D generate(int depth, int row, int column)
      Generates a 3D maze with the given depth, rows and columns.
    • measureAlgorithmTimeMillis

      long measureAlgorithmTimeMillis(int depth, int row, int column)
      Returns how long generate(depth, rows, columns) takes, in milliseconds.