Package | Description |
---|---|
com.b3dgs.lionengine.game.pathfinding |
Modifier and Type | Method and Description |
---|---|
protected Node |
AStarPathFinder.getFirstInOpen()
Get the first element from the open list.
|
Node |
Node.getParent() |
Modifier and Type | Method and Description |
---|---|
protected void |
AStarPathFinder.addToClosed(Node node)
Add a node to the closed list.
|
protected void |
AStarPathFinder.addToOpen(Node node)
Add a node to the open list.
|
protected boolean |
AStarPathFinder.inClosedList(Node node)
Check if the node supplied is in the closed list.
|
protected boolean |
AStarPathFinder.inOpenList(Node node)
Check if a node is in the open list.
|
protected void |
AStarPathFinder.removeFromClosed(Node node)
Remove a node from the closed list.
|
protected void |
AStarPathFinder.removeFromOpen(Node node)
Remove a node from the open list.
|
int |
Node.setParent(Node parent) |