Navigation
API > API/Plugins > API/Plugins/GeometryDataflowNodes
| Name | EMeshBooleanOperationEnum |
| Type | enum |
| Header File | /Engine/Plugins/Experimental/GeometryDataflow/Source/GeometryDataflowNodes/Public/Dataflow/MeshBooleanNodes.h |
| Include Path | #include "Dataflow/MeshBooleanNodes.h" |
Syntax
enum EMeshBooleanOperationEnum
{
Dataflow_MeshBoolean_Union,
Dataflow_MeshBoolean_Intersect,
Dataflow_MeshBoolean_Difference,
Dataflow_Max,
}
Values
| Name | Remarks |
|---|---|
| Dataflow_MeshBoolean_Union | A union of A + B includes everything inside either A or B. |
| Dataflow_MeshBoolean_Intersect | An intersection of A & B includes only the points inside both A and B, i.e. trimming A by B (and vice versa) |
| Dataflow_MeshBoolean_Difference | A difference of A - B includes only the points inside A that are outside of B, i.e. subtracting B from A. |
| Dataflow_Max | 256th entry |