Navigation
API > API/Runtime > API/Runtime/ClothingSystemRuntimeCommon > API/Runtime/ClothingSystemRuntimeCommon/FVertexParameterMapper
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Remap float scalar values. | Utils/ClothingMeshUtils.h | ||
| Generic mapping function, can be used to map any type with a provided callable | Utils/ClothingMeshUtils.h |
Map(TConstArrayView< float >, TArray< float > &)
Description
Remap float scalar values. This transfers the values from source to dest by matching the mesh topologies using barycentric coordinates of the dest mesh (Mesh0) positions over the source mesh (Mesh1).
| Name | Map |
| Type | function |
| Header File | /Engine/Source/Runtime/ClothingSystemRuntimeCommon/Public/Utils/ClothingMeshUtils.h |
| Include Path | #include "Utils/ClothingMeshUtils.h" |
| Source | /Engine/Source/Runtime/ClothingSystemRuntimeCommon/Private/Utils/ClothingMeshUtils.cpp |
void Map
(
TConstArrayView< float > Source,
TArray < float > & Dest
)
Map(TConstArrayView< T > &, TArray< T > &, const Lambda &)
Description
Generic mapping function, can be used to map any type with a provided callable
| Name | Map |
| Type | function |
| Header File | /Engine/Source/Runtime/ClothingSystemRuntimeCommon/Public/Utils/ClothingMeshUtils.h |
| Include Path | #include "Utils/ClothingMeshUtils.h" |
template<typename T, typename Lambda>
void Map
(
TConstArrayView< T > & SourceData,
TArray < T > & DestData,
const Lambda & Func
)