Package mazealgo.model.algorithms.maze3D
Interface IMaze3DGenerator
- All Known Implementing Classes:
AMaze3DGenerator,MyMaze3DGenerator
public interface IMaze3DGenerator
A 3D maze generation algorithm.
-
Method Summary
Modifier and TypeMethodDescriptiongenerate(int depth, int row, int column) Generates a 3D maze with the given depth, rows and columns.longmeasureAlgorithmTimeMillis(int depth, int row, int column) Returns how long generate(depth, rows, columns) takes, in milliseconds.
-
Method Details
-
generate
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.
-