Navigation
API > API/Runtime > API/Runtime/GeometryCore > API/Runtime/GeometryCore/TMeshDijkstra
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void ComputeToMaxDistance
(
const TArray< FSeedPoint >& SeedPointsIn, |
Computes graph distances outwards from seed points to all points that are less/equal to ComputeToMaxDistance from the seed. | Parameterization/MeshDijkstra.h | |
void ComputeToMaxDistance
(
const TArray< FVector2d >& SeedPointsIn, |
Computes graph distances outwards from seed points to all points that are less/equal to ComputeToMaxDistance from the seed. | Parameterization/MeshDijkstra.h |
ComputeToMaxDistance(const TArray< FSeedPoint > &, double)
Description
Computes graph distances outwards from seed points to all points that are less/equal to ComputeToMaxDistance from the seed.
| Name | ComputeToMaxDistance |
| Type | function |
| Header File | /Engine/Source/Runtime/GeometryCore/Public/Parameterization/MeshDijkstra.h |
| Include Path | #include "Parameterization/MeshDijkstra.h" |
void ComputeToMaxDistance
(
const TArray < FSeedPoint > & SeedPointsIn,
double ComputeToMaxDistanceIn
)
Parameters
| Name | Remarks |
|---|---|
| SeedPointsIn | seed points used to initialize computation, ie geodesics propagate out from this point set |
| ComputeToMaxDistance | target graph-distance radius, will not compute/set distances on points with graph-distance larger than this |
ComputeToMaxDistance(const TArray< FVector2d > &, double)
Description
Computes graph distances outwards from seed points to all points that are less/equal to ComputeToMaxDistance from the seed.
| Name | ComputeToMaxDistance |
| Type | function |
| Header File | /Engine/Source/Runtime/GeometryCore/Public/Parameterization/MeshDijkstra.h |
| Include Path | #include "Parameterization/MeshDijkstra.h" |
void ComputeToMaxDistance
(
const TArray < FVector2d > & SeedPointsIn,
double ComputeToMaxDistanceIn
)
Parameters
| Name | Remarks |
|---|---|
| SeedPointsIn | 2D tuples that define seed points as (PointID, InitialDistance) pairs |
| ComputeToMaxDistance | target graph-distance radius, will not compute/set distances on points with graph-distance larger than this |