Navigation
API > API/Plugins > API/Plugins/ModelingOperators > API/Plugins/ModelingOperators/CurveOps
References
| Module | ModelingOperators |
| Header | /Engine/Plugins/Runtime/MeshModelingToolset/Source/ModelingOperators/Public/CurveOps/TriangulateCurvesOp.h |
| Include | #include "CurveOps/TriangulateCurvesOp.h" |
Syntax
enum ECombineCurvesMethod
{
LeaveSeparate,
Union,
Intersect,
Difference,
ExclusiveOr,
}
Values
| Name | Description |
|---|---|
| LeaveSeparate | Triangulate each curve separately. |
| Union | Triangulate the union of the curve polygons the space covered by any of the polygons. |
| Intersect | Triangulate the intersection of the curve polygons the space covered by all of the polygons. |
| Difference | Triangulate the difference of the first curve polygon minus the remaining curve polygons. |
| ExclusiveOr | Triangulate the exclusive-or of the curve polygons the space covered by the first polygon, or the remaining polygons, but not both. |