| Package | Description |
|---|---|
| maze |
| Modifier and Type | Method and Description |
|---|---|
int |
Maze.getWeightAbove(Juncture juncture)
Returns the weight between this juncture and the one above.
|
int |
Maze.getWeightBelow(Juncture juncture)
Returns the weight between this juncture and the one below.
|
int |
Maze.getWeightToLeft(Juncture juncture)
Returns the weight between this juncture and the one to its
left.
|
int |
Maze.getWeightToRight(Juncture juncture)
Returns the weight between this juncture and the one to its
right.
|
boolean |
Maze.isWallAbove(Juncture juncture)
Returns true if there is a wall above the given juncture,
false otherwise.
|
boolean |
Maze.isWallBelow(Juncture juncture)
Returns true if there is a wall below the given juncture,
false otherwise.
|
boolean |
Maze.isWallToLeft(Juncture juncture)
Returns true if there is a wall to the left of the
given juncture, false otherwise.
|
boolean |
Maze.isWallToRight(Juncture juncture)
Returns true if there is a wall to the right of the
given juncture, false otherwise.
|