Navigation
API > API/Plugins > API/Plugins/DynamicMesh
Description
Use intrinsic Delaunay mesh to construct sparse Cotangent Laplacian matrix. This variant combines the N interior and M boundary vertices into a single (N+M) matrix and does not do any special treatment of boundaries, they just get standard Cotan weights.
| Name | UE::MeshDeformation::ConstructFullIDTCotangentLaplacian |
| Type | function |
| Header File | /Engine/Plugins/Runtime/GeometryProcessing/Source/DynamicMesh/Public/Solvers/LaplacianMatrixAssembly.h |
| Include Path | #include "Solvers/LaplacianMatrixAssembly.h" |
namespace UE
{
namespace MeshDeformation
{
template<typename RealType>
void UE::MeshDeformation::ConstructFullIDTCotangentLaplacian
(
const FDynamicMesh3 & Mesh,
const FVertexLinearization & VertexMap,
UE::Solvers::TSparseMatrixAssembler < RealType > & LaplacianMatrix,
ECotangentWeightMode WeightMode,
ECotangentAreaMode AreaMode
)
}
}