|
qHexWalker 0.0.1
Hexagonal Grid Pathfinding & Maze Visualization on Interactive Maps
|
Internal node structure for A* priority queue. More...
Collaboration diagram for H3AStar::Node:Public Member Functions | |
| bool | operator> (const Node &other) const |
| Comparison operator for priority queue (min-heap). | |
Public Attributes | |
| H3Index | cell {} |
| The H3 cell index. | |
| double | gScore {} |
| Cost from start to this node. | |
| double | fScore {} |
| Estimated total cost (gScore + heuristic). | |
|
inline |
| H3Index H3AStar::Node::cell {} |
The H3 cell index.
Definition at line 109 of file astar.h.
Referenced by H3AStar::findLocalPathAtResolution(), and H3AStar::findPathAtResolution3().
| double H3AStar::Node::fScore {} |
Estimated total cost (gScore + heuristic).
Definition at line 111 of file astar.h.
Referenced by operator>().
| double H3AStar::Node::gScore {} |