Navigation
API > API/Plugins > API/Plugins/ModelingComponentsEditorOnly
Subdivision scheme
| Name | ESubdivisionScheme |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/MeshModelingToolset/Source/ModelingComponentsEditorOnly/Public/Operations/SubdividePoly.h |
| Include Path | #include "Operations/SubdividePoly.h" |
Syntax
enum ESubdivisionScheme
{
Bilinear,
UMETA =(DisplayName = "Catmull-Clark"),
Loop,
}
Values
| Name | Remarks |
|---|---|
| Bilinear | Subdivides like Catmull-Clark, but does not smooth the result (i.e. the vertices remain in their original planes). |
| UMETA | Common subdivision scheme typically used with quad-dominant meshes. |
| Loop | Subdivision scheme developed by Charles Loop that operates directly on triangle meshes, and therefore does not use the group topology. |