GridCost is a composite data type that pairs a group of grid cells with a path cost. It represents the path cost for a set of grids in 3D mesh pathfinding.
Fields
| Field | Data type | Description |
|---|---|---|
Grids | geomgrid[] | An array of grid cells. |
Cost | SMALLINT | The path cost assigned to the grid cells in Grids. |
Use cases
3D mesh pathfinding: Assign cost values to groups of grids to compute optimal paths through a three-dimensional spatial mesh.