From b5e8e8da6f7fecb336972f621db9af8e2aae8a74 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 30 Oct 2012 06:43:30 +0000 Subject: add option to select face by matching number of sides. --- source/blender/bmesh/intern/bmesh_operators.h | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/bmesh/intern/bmesh_operators.h') diff --git a/source/blender/bmesh/intern/bmesh_operators.h b/source/blender/bmesh/intern/bmesh_operators.h index b1da8ecb275..3341a7df6f7 100644 --- a/source/blender/bmesh/intern/bmesh_operators.h +++ b/source/blender/bmesh/intern/bmesh_operators.h @@ -51,6 +51,7 @@ enum { SIMFACE_MATERIAL = 201, SIMFACE_IMAGE, SIMFACE_AREA, + SIMFACE_SIDES, SIMFACE_PERIMETER, SIMFACE_NORMAL, SIMFACE_COPLANAR -- cgit v1.2.3 From 330c0178ce044ba3017d811bba06498fe6525f62 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 30 Oct 2012 07:29:17 +0000 Subject: add the option to select Equal/Greater/Less when selecting similar. Recently addons were submitted for review and this was the only advantage they had over blenders existing internal select-similar tool. --- source/blender/bmesh/intern/bmesh_operators.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source/blender/bmesh/intern/bmesh_operators.h') diff --git a/source/blender/bmesh/intern/bmesh_operators.h b/source/blender/bmesh/intern/bmesh_operators.h index 3341a7df6f7..14da93302b9 100644 --- a/source/blender/bmesh/intern/bmesh_operators.h +++ b/source/blender/bmesh/intern/bmesh_operators.h @@ -46,6 +46,12 @@ enum { SUBDIV_SELECT_LOOPCUT }; +enum { + SIM_CMP_EQ = 0, + SIM_CMP_GT, + SIM_CMP_LT +}; + /* similar face selection slot values */ enum { SIMFACE_MATERIAL = 201, -- cgit v1.2.3