Navigation
API > API/Plugins > API/Plugins/GeometryScriptingCore
| Name | EGeometryScriptPolygonFillMode |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/GeometryScripting/Source/GeometryScriptingCore/Public/GeometryScript/MeshPrimitiveFunctions.h |
| Include Path | #include "GeometryScript/MeshPrimitiveFunctions.h" |
Syntax
enum EGeometryScriptPolygonFillMode
{
All = 0,
Solid = 1,
PositiveWinding = 2,
NonZeroWinding = 3,
NegativeWinding = 4,
OddWinding = 5,
}
Values
| Name | Remarks |
|---|---|
| All | Keep all triangles, regardless of whether they were enclosed by constrained edges. |
| Solid | Fill everything inside the outer boundaries of constrained edges, ignoring edge orientation and any internal holes. |
| PositiveWinding | Fill where the 'winding number' is positive. |
| NonZeroWinding | Fill where the 'winding number' is not zero. |
| NegativeWinding | Fill where the 'winding number' is negative. |
| OddWinding | Fill where the 'winding number' is an odd number. |