Navigation
API > API/Plugins > API/Plugins/DynamicMesh
| Name | UE::MeshDeformation::ECotangentWeightMode |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/GeometryProcessing/Source/DynamicMesh/Public/Solvers/LaplacianMatrixAssembly.h |
| Include Path | #include "Solvers/LaplacianMatrixAssembly.h" |
Syntax
namespace UE
{
namespace MeshDeformation
{
enum ECotangentWeightMode
{
Default = 0,
ClampedMagnitude = 1,
TriangleArea = 2,
}
}
}
Values
| Name | Remarks |
|---|---|
| Default | Standard cotangent weights |
| ClampedMagnitude | Magnitude of matrix entries clamped to [-1e5,1e5], scaled by area weight |
| TriangleArea | Divide cotangent weights by the area of the triangle |