Navigation
API > API/Plugins > API/Plugins/DynamicMesh
Description
Given a UV overlay, generate a mesh out of the overlay using the given UV to 3d position function. The resulting mesh's vertex IDs will match the overlay element IDs, and the triangle IDs will match the overlay triangle IDs. The mesh will have a UV overlay of its own that will match the source overlay except for the parent verts.
| Name | UE::Geometry::UVUnwrapMeshUtil::GenerateUVUnwrapMesh |
| Type | function |
| Header File | /Engine/Plugins/Runtime/GeometryProcessing/Source/DynamicMesh/Public/Parameterization/UVUnwrapMeshUtil.h |
| Include Path | #include "Parameterization/UVUnwrapMeshUtil.h" |
| Source | /Engine/Plugins/Runtime/GeometryProcessing/Source/DynamicMesh/Private/Parameterization/UVUnwrapMeshUtil.cpp |
namespace UE
{
namespace Geometry
{
namespace UVUnwrapMeshUtil
{
void UE::Geometry::UVUnwrapMeshUtil::GenerateUVUnwrapMesh
(
const FDynamicMeshUVOverlay & UVOverlay,
FDynamicMesh3 & UnwrapMeshOut,
TFunctionRef < FVector3d> UVToVertPosition
)
}
}
}