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