Navigation
API > API/Runtime > API/Runtime/GeometryCore > API/Runtime/GeometryCore/FDelaunay2
Indicates result of triangulation.
| Name | EResult |
| Type | enum |
| Header File | /Engine/Source/Runtime/GeometryCore/Public/CompGeom/Delaunay2.h |
| Include Path | #include "CompGeom/Delaunay2.h" |
Syntax
enum EResult
{
Success,
NotComputed,
EmptyInput,
Collinear,
MissingEdges,
Unknown,
}
Values
| Name | Remarks |
|---|---|
| Success | |
| NotComputed | Has not yet tried to compute a triangulation. |
| EmptyInput | No input points. |
| Collinear | Input did not span a 2D basis (was 1D or 0D) so could not form a triangle. |
| MissingEdges | Could not create triangulation containing all requested constraint edges, typically due to intersections between requested edges. |
| Unknown | Uncategorized failure. |