Navigation
API > API/Runtime > API/Runtime/GeometryCore > API/Runtime/GeometryCore/TMeshLocalParam
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void ComputeToMaxDistance
(
const FFrame3d& SeedFrameIn, |
Computes UVs outwards from seed frame/nbrs to all points that are less/equal to ComputeToMaxDistance from the seed. | Parameterization/MeshLocalParam.h | |
void ComputeToMaxDistance
(
int32 CenterPointVtxID, |
Computes UVs outwards from seed vertex to all points that are less/equal to ComputeToMaxDistance from the seed. | Parameterization/MeshLocalParam.h |
ComputeToMaxDistance(const FFrame3d &, const FIndex3i &, double)
Description
Computes UVs outwards from seed frame/nbrs to all points that are less/equal to ComputeToMaxDistance from the seed.
| Name | ComputeToMaxDistance |
| Type | function |
| Header File | /Engine/Source/Runtime/GeometryCore/Public/Parameterization/MeshLocalParam.h |
| Include Path | #include "Parameterization/MeshLocalParam.h" |
void ComputeToMaxDistance
(
const FFrame3d & SeedFrameIn,
const FIndex3i & SeedNbrs,
double ComputeToMaxDistanceIn
)
Parameters
| Name | Remarks |
|---|---|
| SeedFrameIn | 3D frame on surface of point set, parameterization is computed "in" this frame (eg will align u/v to x/y axes, at origin) |
| SeedNbrs | 3 points that will be planar-projected into the SeedFrame, to initialize the region-growing (kind of triangle-mesh-specific) |
| ComputeToMaxDistanceIn | target radius for parameterization, will not set UVs on points with graph-distance larger than this |
ComputeToMaxDistance(int32, const FFrame3d &, double)
Description
Computes UVs outwards from seed vertex to all points that are less/equal to ComputeToMaxDistance from the seed.
| Name | ComputeToMaxDistance |
| Type | function |
| Header File | /Engine/Source/Runtime/GeometryCore/Public/Parameterization/MeshLocalParam.h |
| Include Path | #include "Parameterization/MeshLocalParam.h" |
void ComputeToMaxDistance
(
int32 CenterPointVtxID,
const FFrame3d & CenterPointFrame,
double ComputeToMaxDistanceIn
)
Parameters
| Name | Remarks |
|---|---|
| CenterPointVtxID | ID of seed vertex |
| CenterPointFrame | 3D frame on surface of point set, parameterization is computed "in" this frame (eg will align u/v to x/y axes, at origin) |
| ComputeToMaxDistanceIn | target radius for parameterization, will not set UVs on points with graph-distance larger than this |