Fix T59804: Expose hidden bmesh.ops.symmetrize options in python

The operator actually supports a 6-item enum

Differential Revision: https://developer.blender.org/D6613
This commit is contained in:
Germano Cavalcante 2020-01-27 12:59:11 -03:00
parent 5d21efcd21
commit 2662ba2438
Notes: blender-bot 2023-02-14 09:29:42 +01:00
Referenced by issue #59804, The bmesh.ops.symmetrize python interface does not support the "positive" variants of symmetry direction
1 changed files with 11 additions and 1 deletions

View File

@ -102,6 +102,16 @@ static BMO_FlagSet bmo_enum_axis_xyz[] = {
{0, NULL},
};
static BMO_FlagSet bmo_enum_axis_neg_xyz_and_xyz[] = {
{0, "-X"},
{1, "-Y"},
{2, "-Z"},
{3, "X"},
{4, "Y"},
{5, "Z"},
{0, NULL},
};
static BMO_FlagSet bmo_enum_falloff_type[] = {
{SUBD_FALLOFF_SMOOTH, "SMOOTH"},
{SUBD_FALLOFF_SPHERE, "SPHERE"},
@ -2046,7 +2056,7 @@ static BMOpDefine bmo_symmetrize_def = {
"symmetrize",
/* slots_in */
{{"input", BMO_OP_SLOT_ELEMENT_BUF, {BM_VERT | BM_EDGE | BM_FACE}},
{"direction", BMO_OP_SLOT_INT, {(int)BMO_OP_SLOT_SUBTYPE_INT_ENUM}, bmo_enum_axis_xyz}, /* axis to use */
{"direction", BMO_OP_SLOT_INT, {(int)BMO_OP_SLOT_SUBTYPE_INT_ENUM}, bmo_enum_axis_neg_xyz_and_xyz}, /* axis to use */
{"dist", BMO_OP_SLOT_FLT}, /* minimum distance */
{{'\0'}},
},