@Deprecated public interface AStarMap<NODE>
Use amis-path-finding library instead, see svn://artemis.ms.mff.cuni.cz/pogamut/trunk/project/Utils/AmisPathFinding
| Modifier and Type | Method and Description |
|---|---|
int |
getEdgeCost(NODE nodeFrom,
NODE nodeTo)
Deprecated.
Should return the distance from nodeFrom to nodeTo
You can be sure that nodeTo is among the neighbours of nodeFrom.
|
int |
getNodeCost(NODE node)
Deprecated.
General cost of having this node at your path.
|
Collection<NODE> |
getNodeNeighbours(NODE node)
Deprecated.
This should return a collection of nodes which are connected to this one.
|
int getNodeCost(NODE node)
node - int getEdgeCost(NODE nodeFrom, NODE nodeTo)
nodeFrom - nodeTo - Collection<NODE> getNodeNeighbours(NODE node)
Copyright © 2019 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All rights reserved.