Navigation
API > API/Plugins > API/Plugins/ModelingOperators
| |
|
| Name |
ECombineCurvesMethod |
| Type |
enum |
| Header File |
/Engine/Plugins/Runtime/MeshModelingToolset/Source/ModelingOperators/Public/CurveOps/TriangulateCurvesOp.h |
| Include Path |
#include "CurveOps/TriangulateCurvesOp.h" |
Syntax
enum ECombineCurvesMethod
{
LeaveSeparate,
Union,
Intersect,
Difference,
ExclusiveOr,
}
Values
| Name |
Remarks |
| 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. |