Choose your operating system:
Windows
macOS
Linux
Module |
|
Header |
/Engine/Plugins/Runtime/GeometryProcessing/Source/GeometryAlgorithms/Public/ConstrainedDelaunay2.h |
Include |
#include "ConstrainedDelaunay2.h" |
Source |
/Engine/Plugins/Runtime/GeometryProcessing/Source/GeometryAlgorithms/Private/ConstrainedDelaunay2.cpp |
namespace UE
{
namespace Geometry
{
template<typename RealType>
TArray< FIndex3i > UE::Geometry::ConstrainedDelaunayTriangulate
(
const TGeneralPolygon2< RealType > & GeneralPolygon
)
}
}
Convenience function; invokes TConstrainedDelaunay2::Triangulate with most-often-used options
An array of triangle indices. Indices refer to a flat array w/ the outer polygon vertices first, and the hole vertices appended after.
Parameter |
Description |
---|---|
GeneralPolygon |
A general polygon, which may include holes. |