Navigation
API > API/Plugins > API/Plugins/GeometryScriptingCore > API/Plugins/GeometryScriptingCore/GeometryScript
References
| Module | GeometryScriptingCore |
| Header | /Engine/Plugins/Runtime/GeometryScripting/Source/GeometryScriptingCore/Public/GeometryScript/MeshPrimitiveFunctions.h |
| Include | #include "GeometryScript/MeshPrimitiveFunctions.h" |
Syntax
enum EGeometryScriptPolygonFillMode
{
All = 0,
Solid = 1,
PositiveWinding = 2,
NonZeroWinding = 3,
NegativeWinding = 4,
OddWinding = 5,
}
Values
| Name | Description |
|---|---|
| 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. |