|
Aleph-w 3.0
A C++ Library for Data Structures and Algorithms
|
Node info containing 2D coordinates. More...
Public Member Functions | |
| GridCell ()=default | |
| GridCell (int _x, int _y, bool _blocked=false) | |
Public Attributes | |
| int | x = 0 |
| int | y = 0 |
| bool | blocked = false |
Node info containing 2D coordinates.
Each node in our grid graph stores its (x, y) position.
Definition at line 127 of file astar_example.cc.
|
default |
Definition at line 134 of file astar_example.cc.
Definition at line 131 of file astar_example.cc.
| int GridCell::x = 0 |
Definition at line 129 of file astar_example.cc.
| int GridCell::y = 0 |
Definition at line 130 of file astar_example.cc.