Navigation
API > API/Runtime > API/Runtime/GeometryCore > API/Runtime/GeometryCore/Parameterization > API/Runtime/GeometryCore/Parameterization/TMeshLocalParam
References
| Module | GeometryCore |
| Header | /Engine/Source/Runtime/GeometryCore/Public/Parameterization/MeshLocalParam.h |
| Include | #include "Parameterization/MeshLocalParam.h" |
void GetAllComputedUVs
(
TArray < int32 > & PointIDsOut,
TArray < FVector2d > & PointUVsOut,
double MaxUVMagnitude,
double MaxGraphDist
) const
Remarks
Find all computed UVs within the specified distances
Parameters
| Name | Description |
|---|---|
| PointIDsOut | PointID corresponding to each computed UV is returned here |
| PointUVsOut | UV value corresponding to each PointID is returned here |
| MaxUVMagnitude | computed UVs will only be included if their magnitude is smaller than this value (eg, this is the UV-space radius) |
| MaxGraphDistance | computed UVs will only be included if their graph distance is smaller than this value. Graph distance is generally always be larger than UV distance. This can be used to avoid problematic UVs that might result from algorithm failures. |