Navigation
API > API/Runtime > API/Runtime/GeometryCore > API/Runtime/GeometryCore/CompGeom > API/Runtime/GeometryCore/CompGeom/FDelaunay2
References
| Module | GeometryCore |
| Header | /Engine/Source/Runtime/GeometryCore/Public/CompGeom/Delaunay2.h |
| Include | #include "CompGeom/Delaunay2.h" |
Syntax
enum EFillMode
&123;
Solid,
PositiveWinding,
NonZeroWinding,
NegativeWinding,
OddWinding,
&125;
Values
| Name | Description |
|---|---|
| Solid | Fastest/simplest option: Keep all triangles if you'd have to cross a constrained edge to reach it from outside, ignoring edge orientation. |
| PositiveWinding | Winding-number based fill options: Keep triangles based on the winding number. |
| NonZeroWinding | |
| NegativeWinding | |
| OddWinding |
Remarks
Options for selecting what triangles to include in the output, for constrained Delaunay triangulation of polygons.