Navigation
API > API/Runtime > API/Runtime/GeometryCore > API/Runtime/GeometryCore/Parameterization > API/Runtime/GeometryCore/Parameterization/TMeshDijkstra
References
| Module | GeometryCore |
| Header | /Engine/Source/Runtime/GeometryCore/Public/Parameterization/MeshDijkstra.h |
| Include | #include "Parameterization/MeshDijkstra.h" |
bool FindPathToNearestSeed
(
int32 PointID,
TArray < int32 > & PathToSeedOut,
int32 MaxLength
)
Remarks
Find path from a point to the nearest seed point true if valid path was found
Parameters
| Name | Description |
|---|---|
| PointID | starting point, assumption is that we have computed dijkstra to this point |
| PathToSeedOut | path is returned here, includes PointID and seed point as last element |
| MaxLength | if PathToSeedOut grows beyond this length, we abort the search |