Information of a cell in A* Algorithm. More...
#include <aalgorithm.h>

Public Attributes | |
| float | h |
| Heuristic cost of shortest path from cell to goal. | |
| float | f |
| Estimated cost of shortest path from start to goal. | |
| float | g |
| Backpointer length. | |
| struct _GraphMapCell * | backpointer |
| Backpointer. | |
| bool | processed |
| Processed flag. | |
| bool | in_queue |
| struct _GraphMapCell * | next |
| Pointer to the next cell in a list. | |
Information of a cell in A* Algorithm.
Backpointer.
| float _GraphMapCell::f |
Estimated cost of shortest path from start to goal.
| float _GraphMapCell::g |
Backpointer length.
| float _GraphMapCell::h |
Heuristic cost of shortest path from cell to goal.
| struct _GraphMapCell* _GraphMapCell::next |
Pointer to the next cell in a list.
Processed flag.
1.7.1