Blender V4.3
bmesh_marking.hh File Reference

Go to the source code of this file.

Classes

struct  BMEditSelection
 

Macros

#define BM_elem_hide_set(bm, ele, hide)   _bm_elem_hide_set(bm, &(ele)->head, hide)
 
#define BM_select_history_check(bm, ele)   _bm_select_history_check(bm, &(ele)->head)
 
#define BM_select_history_remove(bm, ele)   _bm_select_history_remove(bm, &(ele)->head)
 
#define BM_select_history_store_notest(bm, ele)   _bm_select_history_store_notest(bm, &(ele)->head)
 
#define BM_select_history_store(bm, ele)   _bm_select_history_store(bm, &(ele)->head)
 
#define BM_select_history_store_head_notest(bm, ele)    _bm_select_history_store_head_notest(bm, &(ele)->head)
 
#define BM_select_history_store_head(bm, ele)   _bm_select_history_store_head(bm, &(ele)->head)
 
#define BM_select_history_store_after_notest(bm, ese_ref, ele)    _bm_select_history_store_after_notest(bm, ese_ref, &(ele)->head)
 
#define BM_select_history_store_after(bm, ese, ese_ref)    _bm_select_history_store_after(bm, ese_ref, &(ele)->head)
 
#define BM_SELECT_HISTORY_BACKUP(bm)
 
#define BM_SELECT_HISTORY_RESTORE(bm)
 

Typedefs

typedef struct BMEditSelection BMEditSelection
 
typedef enum eBMSelectionFlushFLags eBMSelectionFlushFLags
 

Enumerations

enum  eBMSelectionFlushFLags {
  BM_SELECT_LEN_FLUSH_RECALC_NOTHING = 0 , BM_SELECT_LEN_FLUSH_RECALC_VERT = (1 << 0) , BM_SELECT_LEN_FLUSH_RECALC_EDGE = (1 << 1) , BM_SELECT_LEN_FLUSH_RECALC_FACE = (1 << 2) ,
  BM_SELECT_LEN_FLUSH_RECALC_ALL
}
 

Functions

void _bm_elem_hide_set (BMesh *bm, BMHeader *head, bool hide)
 
void BM_vert_hide_set (BMVert *v, bool hide)
 
void BM_edge_hide_set (BMEdge *e, bool hide)
 
void BM_face_hide_set (BMFace *f, bool hide)
 
void BM_elem_select_set (BMesh *bm, BMElem *ele, bool select)
 
void BM_mesh_elem_hflag_enable_test (BMesh *bm, char htype, char hflag, bool respecthide, bool overwrite, char hflag_test)
 
void BM_mesh_elem_hflag_disable_test (BMesh *bm, char htype, char hflag, bool respecthide, bool overwrite, char hflag_test)
 
void BM_mesh_elem_hflag_enable_all (BMesh *bm, char htype, char hflag, bool respecthide)
 
void BM_mesh_elem_hflag_disable_all (BMesh *bm, char htype, char hflag, bool respecthide)
 
void BM_vert_select_set (BMesh *bm, BMVert *v, bool select)
 Select Vert.
 
void BM_edge_select_set (BMesh *bm, BMEdge *e, bool select)
 Select Edge.
 
void BM_face_select_set (BMesh *bm, BMFace *f, bool select)
 Select Face.
 
void BM_edge_select_set_noflush (BMesh *bm, BMEdge *e, bool select)
 
void BM_face_select_set_noflush (BMesh *bm, BMFace *f, bool select)
 
void BM_mesh_select_mode_clean_ex (BMesh *bm, short selectmode)
 Select Mode Clean.
 
void BM_mesh_select_mode_clean (BMesh *bm)
 
void BM_mesh_select_mode_set (BMesh *bm, int selectmode)
 
void BM_mesh_select_mode_flush_ex (BMesh *bm, short selectmode, eBMSelectionFlushFLags flags)
 Select Mode Flush.
 
void BM_mesh_select_mode_flush (BMesh *bm)
 
void BM_mesh_deselect_flush (BMesh *bm)
 
void BM_mesh_select_flush (BMesh *bm)
 
int BM_mesh_elem_hflag_count_enabled (BMesh *bm, char htype, char hflag, bool respecthide)
 
int BM_mesh_elem_hflag_count_disabled (BMesh *bm, char htype, char hflag, bool respecthide)
 
void BM_mesh_active_face_set (BMesh *bm, BMFace *f)
 
int BM_mesh_active_face_index_get (BMesh *bm, bool is_sloppy, bool is_selected)
 
int BM_mesh_active_edge_index_get (BMesh *bm)
 
int BM_mesh_active_vert_index_get (BMesh *bm)
 
int BM_mesh_active_elem_index_get (BMesh *bm)
 
BMFaceBM_mesh_active_face_get (BMesh *bm, bool is_sloppy, bool is_selected)
 
BMEdgeBM_mesh_active_edge_get (BMesh *bm)
 
BMVertBM_mesh_active_vert_get (BMesh *bm)
 
BMElemBM_mesh_active_elem_get (BMesh *bm)
 
void BM_editselection_center (BMEditSelection *ese, float r_center[3])
 
void BM_editselection_normal (BMEditSelection *ese, float r_normal[3])
 
void BM_editselection_plane (BMEditSelection *ese, float r_plane[3])
 
bool _bm_select_history_check (BMesh *bm, const BMHeader *ele)
 
bool _bm_select_history_remove (BMesh *bm, BMHeader *ele)
 
void _bm_select_history_store_notest (BMesh *bm, BMHeader *ele)
 
void _bm_select_history_store (BMesh *bm, BMHeader *ele)
 
void _bm_select_history_store_head_notest (BMesh *bm, BMHeader *ele)
 
void _bm_select_history_store_head (BMesh *bm, BMHeader *ele)
 
void _bm_select_history_store_after (BMesh *bm, BMEditSelection *ese_ref, BMHeader *ele)
 
void _bm_select_history_store_after_notest (BMesh *bm, BMEditSelection *ese_ref, BMHeader *ele)
 
void BM_select_history_validate (BMesh *bm)
 
void BM_select_history_clear (BMesh *bm)
 
bool BM_select_history_active_get (BMesh *bm, struct BMEditSelection *ese)
 
struct GHashBM_select_history_map_create (BMesh *bm)
 
void BM_select_history_merge_from_targetmap (BMesh *bm, GHash *vert_map, GHash *edge_map, GHash *face_map, bool use_chain)
 

Macro Definition Documentation

◆ BM_elem_hide_set

#define BM_elem_hide_set ( bm,
ele,
hide )   _bm_elem_hide_set(bm, &(ele)->head, hide)

◆ BM_SELECT_HISTORY_BACKUP

#define BM_SELECT_HISTORY_BACKUP ( bm)
Value:
{ \
ListBase _bm_prev_selected = (bm)->selected; \
BLI_listbase_clear(&(bm)->selected)
ATTR_WARN_UNUSED_RESULT BMesh * bm

Definition at line 188 of file bmesh_marking.hh.

Referenced by edbm_duplicate_exec(), edbm_extrude_edges_indiv(), and edbm_extrude_ex().

◆ BM_select_history_check

#define BM_select_history_check ( bm,
ele )   _bm_select_history_check(bm, &(ele)->head)

◆ BM_select_history_remove

◆ BM_SELECT_HISTORY_RESTORE

#define BM_SELECT_HISTORY_RESTORE ( bm)
Value:
(bm)->selected = _bm_prev_selected; \
} \
(void)0

Definition at line 193 of file bmesh_marking.hh.

Referenced by edbm_duplicate_exec(), edbm_extrude_edges_indiv(), and edbm_extrude_ex().

◆ BM_select_history_store

◆ BM_select_history_store_after

#define BM_select_history_store_after ( bm,
ese,
ese_ref )    _bm_select_history_store_after(bm, ese_ref, &(ele)->head)

Definition at line 159 of file bmesh_marking.hh.

◆ BM_select_history_store_after_notest

#define BM_select_history_store_after_notest ( bm,
ese_ref,
ele )    _bm_select_history_store_after_notest(bm, ese_ref, &(ele)->head)

Definition at line 157 of file bmesh_marking.hh.

Referenced by _bm_select_history_store_after(), and BM_mesh_edgesplit().

◆ BM_select_history_store_head

#define BM_select_history_store_head ( bm,
ele )   _bm_select_history_store_head(bm, &(ele)->head)

Definition at line 156 of file bmesh_marking.hh.

◆ BM_select_history_store_head_notest

#define BM_select_history_store_head_notest ( bm,
ele )    _bm_select_history_store_head_notest(bm, &(ele)->head)

◆ BM_select_history_store_notest

Typedef Documentation

◆ BMEditSelection

typedef struct BMEditSelection BMEditSelection

◆ eBMSelectionFlushFLags

Enumeration Type Documentation

◆ eBMSelectionFlushFLags

Enumerator
BM_SELECT_LEN_FLUSH_RECALC_NOTHING 
BM_SELECT_LEN_FLUSH_RECALC_VERT 
BM_SELECT_LEN_FLUSH_RECALC_EDGE 
BM_SELECT_LEN_FLUSH_RECALC_FACE 
BM_SELECT_LEN_FLUSH_RECALC_ALL 

Definition at line 17 of file bmesh_marking.hh.

Function Documentation

◆ _bm_elem_hide_set()

◆ _bm_select_history_check()

bool _bm_select_history_check ( BMesh * bm,
const BMHeader * ele )

Definition at line 1055 of file bmesh_marking.cc.

References BLI_findptr(), bm, offsetof, and BMesh::selected.

◆ _bm_select_history_remove()

bool _bm_select_history_remove ( BMesh * bm,
BMHeader * ele )

Definition at line 1060 of file bmesh_marking.cc.

References BLI_findptr(), BLI_freelinkN(), bm, offsetof, and BMesh::selected.

◆ _bm_select_history_store()

void _bm_select_history_store ( BMesh * bm,
BMHeader * ele )

Definition at line 1083 of file bmesh_marking.cc.

References bm, BM_select_history_check, and BM_select_history_store_notest.

◆ _bm_select_history_store_after()

void _bm_select_history_store_after ( BMesh * bm,
BMEditSelection * ese_ref,
BMHeader * ele )

◆ _bm_select_history_store_after_notest()

void _bm_select_history_store_after_notest ( BMesh * bm,
BMEditSelection * ese_ref,
BMHeader * ele )

◆ _bm_select_history_store_head()

void _bm_select_history_store_head ( BMesh * bm,
BMHeader * ele )

◆ _bm_select_history_store_head_notest()

void _bm_select_history_store_head_notest ( BMesh * bm,
BMHeader * ele )

Definition at line 1077 of file bmesh_marking.cc.

References BLI_addhead(), bm, bm_select_history_create(), and BMesh::selected.

◆ _bm_select_history_store_notest()

void _bm_select_history_store_notest ( BMesh * bm,
BMHeader * ele )

Definition at line 1071 of file bmesh_marking.cc.

References BLI_addtail(), bm, bm_select_history_create(), and BMesh::selected.

◆ BM_edge_hide_set()

◆ BM_edge_select_set()

void BM_edge_select_set ( BMesh * bm,
BMEdge * e,
bool select )

Select Edge.

Changes selection state of a single edge in a mesh.

Definition at line 538 of file bmesh_marking.cc.

References BLI_assert, bm, BM_EDGE, BM_elem_flag_disable, BM_elem_flag_enable, BM_elem_flag_test, BM_ELEM_HIDDEN, BM_ELEM_SELECT, bm_vert_is_edge_select_any_other(), BM_vert_select_set(), e, BMVert::head, BMHeader::htype, SCE_SELECT_VERTEX, select(), BMesh::selectmode, BMesh::totedgesel, and v.

Referenced by _bm_elem_hide_set(), BM_elem_select_set(), BM_face_select_set(), bm_face_split_by_edges_island_connect(), BM_mesh_bm_from_me(), BM_mesh_select_mode_clean_ex(), BM_mesh_select_mode_set(), bm_vert_connect_select_history(), do_lasso_select_mesh__doSelectEdge_pass0(), do_lasso_select_mesh__doSelectEdge_pass1(), do_mesh_box_select__doSelectEdge_pass0(), do_mesh_box_select__doSelectEdge_pass1(), edbm_add_edge_face_exec__tricky_extend_sel(), edbm_add_edge_face_exec__tricky_finalize_sel(), edbm_backbuf_check_and_select_edges(), edbm_intersect_select(), edbm_polybuild_transform_at_cursor_invoke(), edbm_region_to_loop_exec(), edbm_rip_edge_invoke(), edbm_ripsel_deselect_helper(), edbm_select_linked_exec(), edbm_select_linked_pick_ex(), edbm_select_loose_exec(), EDBM_select_mirrored(), edbm_select_non_manifold_exec(), EDBM_select_pick(), edbm_select_random_exec(), edbm_select_sharp_edges_exec(), EDBM_select_swap(), EDBM_selectmode_convert(), EDBM_selectmode_set(), edgering_select(), edgetag_set_cb(), knife_make_cuts(), knife_make_face_cuts(), mesh_circle_doSelectEdge(), mouse_mesh_shortest_path_edge(), similar_edge_select_exec(), uv_hide_exec(), uvedit_edge_select_disable(), and uvedit_edge_select_enable().

◆ BM_edge_select_set_noflush()

void BM_edge_select_set_noflush ( BMesh * bm,
BMEdge * e,
bool select )

◆ BM_editselection_center()

void BM_editselection_center ( BMEditSelection * ese,
float r_center[3] )

◆ BM_editselection_normal()

◆ BM_editselection_plane()

void BM_editselection_plane ( BMEditSelection * ese,
float r_plane[3] )

Calculate a plane that is right angles to the edge/vert/faces normal also make the plane run along an axis that is related to the geometry, because this is used for the gizmos Y axis.

Definition at line 988 of file bmesh_marking.cc.

References BM_EDGE, BM_edge_is_boundary(), BM_editselection_center(), BM_FACE, BM_face_calc_tangent_auto(), BM_VERT, BMVert::co, cross_v3_v3v3(), BMEditSelection::ele, BMEditSelection::htype, BMEdge::l, BMLoop::next, BMVert::no, normalize_v3(), BMEditSelection::prev, sub_v3_v3v3(), BMLoop::v, BMEdge::v1, and BMEdge::v2.

Referenced by getTransformOrientation_ex(), and transform_convert_mesh_islands_calc().

◆ BM_elem_select_set()

◆ BM_face_hide_set()

◆ BM_face_select_set()

void BM_face_select_set ( BMesh * bm,
BMFace * f,
bool select )

Select Face.

Changes selection state of a single face in a mesh.

Note
This allows a temporarily invalid state - where for eg an edge bay be de-selected, but an adjacent face remains selected.

Rely on BM_mesh_select_mode_flush to correct these cases.

Note
flushing based on mode, see #46494
use BM_edge_select_set_noflush, vertex flushing is handled last.

Definition at line 578 of file bmesh_marking.cc.

References BLI_assert, bm, bm_edge_is_face_select_any_other(), BM_edge_select_set(), BM_edge_select_set_noflush(), BM_elem_flag_disable, BM_elem_flag_enable, BM_elem_flag_test, BM_ELEM_HIDDEN, BM_ELEM_SELECT, BM_FACE, BM_FACE_FIRST_LOOP, bm_vert_is_edge_select_any_other(), BM_vert_select_set(), BMLoop::e, BMFace::head, BMHeader::htype, BMLoop::next, SCE_SELECT_EDGE, SCE_SELECT_VERTEX, select(), BMesh::selectmode, BMesh::totfacesel, and BMLoop::v.

Referenced by _bm_elem_hide_set(), BM_elem_select_set(), bm_face_split_by_edges(), bm_face_split_by_edges_island_connect(), BM_mesh_bm_from_me(), BM_mesh_select_mode_set(), do_lasso_select_mesh__doSelectFace(), do_mesh_box_select__doSelectFace(), edbm_add_edge_face_exec__tricky_finalize_sel(), edbm_backbuf_check_and_select_faces(), EDBM_deselect_by_material(), edbm_extrude_discrete_faces(), edbm_loop_to_region_exec(), edbm_mod_weighted_strength_exec(), edbm_polybuild_transform_at_cursor_invoke(), edbm_select_face_by_sides_exec(), EDBM_select_interior_faces(), edbm_select_linked_exec(), edbm_select_linked_flat_faces_exec(), edbm_select_linked_pick_ex(), edbm_select_loose_exec(), EDBM_select_mirrored(), EDBM_select_pick(), edbm_select_random_exec(), edbm_select_similar_region_exec(), EDBM_select_swap(), EDBM_selectmode_convert(), EDBM_selectmode_set(), facetag_set_cb(), mesh_circle_doSelectFace(), similar_face_select_exec(), uv_hide_exec(), uvedit_edge_select_disable(), uvedit_edge_select_enable(), uvedit_face_select_disable(), uvedit_face_select_enable(), uvedit_uv_select_disable(), and uvedit_uv_select_enable().

◆ BM_face_select_set_noflush()

void BM_face_select_set_noflush ( BMesh * bm,
BMFace * f,
bool select )

◆ BM_mesh_active_edge_get()

◆ BM_mesh_active_edge_index_get()

int BM_mesh_active_edge_index_get ( BMesh * bm)

◆ BM_mesh_active_elem_get()

◆ BM_mesh_active_elem_index_get()

int BM_mesh_active_elem_index_get ( BMesh * bm)

Definition at line 859 of file bmesh_marking.cc.

References bm, BM_elem_index_get, BM_mesh_active_elem_get(), and e.

◆ BM_mesh_active_face_get()

◆ BM_mesh_active_face_index_get()

int BM_mesh_active_face_index_get ( BMesh * bm,
bool is_sloppy,
bool is_selected )

◆ BM_mesh_active_face_set()

void BM_mesh_active_face_set ( BMesh * bm,
BMFace * f )

◆ BM_mesh_active_vert_get()

◆ BM_mesh_active_vert_index_get()

int BM_mesh_active_vert_index_get ( BMesh * bm)

◆ BM_mesh_deselect_flush()

void BM_mesh_deselect_flush ( BMesh * bm)

◆ BM_mesh_elem_hflag_count_disabled()

int BM_mesh_elem_hflag_count_disabled ( BMesh * bm,
char htype,
char hflag,
bool respecthide )

Definition at line 810 of file bmesh_marking.cc.

References bm, and bm_mesh_flag_count().

Referenced by bmo_slot_buffer_from_hflag().

◆ BM_mesh_elem_hflag_count_enabled()

int BM_mesh_elem_hflag_count_enabled ( BMesh * bm,
char htype,
char hflag,
bool respecthide )

Definition at line 802 of file bmesh_marking.cc.

References bm, and bm_mesh_flag_count().

Referenced by bmo_slot_buffer_from_hflag().

◆ BM_mesh_elem_hflag_disable_all()

void BM_mesh_elem_hflag_disable_all ( BMesh * bm,
char htype,
char hflag,
bool respecthide )

Definition at line 1367 of file bmesh_marking.cc.

References bm, and BM_mesh_elem_hflag_disable_test().

Referenced by BKE_mesh_remesh_voxel_fix_poles(), BM_mesh_bisect_plane(), BM_mesh_calc_edge_groups_as_arrays(), BM_mesh_esubdivide(), BM_mesh_intersect(), BM_mesh_region_match(), BM_mesh_wireframe(), bmo_bevel_exec(), bmo_bisect_plane_exec(), bmo_edgenet_fill_exec(), bmo_face_attribute_fill_exec(), bmo_holes_fill_exec(), bmo_inset_individual_exec(), bmo_inset_region_exec(), bmo_offset_edgeloops_exec(), bmo_split_edges_exec(), bmo_subdivide_edgering_exec(), bmo_triangulate_exec(), bmo_wireframe_exec(), bridge_loop_pair(), build_hull(), cylinder_project_exec(), blender::ed::sculpt_paint::face_set::delete_geometry(), do_lasso_select_mesh_uv(), edbm_bridge_edge_loops_for_single_editmesh(), edbm_bridge_tag_boundary_edges(), edbm_delete_edgeloop_exec(), edbm_delete_loose_exec(), EDBM_flag_disable_all(), edbm_intersect_select(), edbm_loop_to_region_exec(), edbm_offset_edgeloop_exec(), EDBM_op_call_and_selectf(), edbm_region_to_loop_exec(), edbm_select_linked_flat_faces_exec(), edbm_split_exec(), edbm_wireframe_exec(), geometry_extract_apply(), geometry_extract_tag_face_set(), geometry_extract_tag_masked_faces(), hull_merge_triangles(), knifeproject_exec(), mesh_separate_loose(), mesh_separate_material(), mesh_separate_selected(), mesh_separate_tagged(), mesh_symmetry_snap_exec(), multires_unsubdivide_prepare_original_bmesh_for_extract(), multires_unsubdivide_single_level(), multires_unsubdivide_to_basemesh(), skin_fix_hole_no_good_verts(), skin_smooth_hulls(), slice_paint_mask(), smart_uv_project_calculate_project_normals(), special_aftertrans_update__mesh(), sphere_project_exec(), blender::ed::sculpt_paint::symmetrize_exec(), unsubdivide_build_base_mesh_from_tags(), blender::ed::sculpt_paint::trim::update_normals(), uv_box_select_exec(), uv_circle_select_exec(), uv_select_edgering(), uv_select_faceloop(), uv_select_flush_from_tag_loop(), uv_select_more_less(), uv_select_overlap(), and blender::ed::object::vgroup_mirror().

◆ BM_mesh_elem_hflag_disable_test()

◆ BM_mesh_elem_hflag_enable_all()

◆ BM_mesh_elem_hflag_enable_test()

◆ BM_mesh_select_flush()

void BM_mesh_select_flush ( BMesh * bm)

◆ BM_mesh_select_mode_clean()

void BM_mesh_select_mode_clean ( BMesh * bm)

Definition at line 302 of file bmesh_marking.cc.

References bm, BM_mesh_select_mode_clean_ex(), and BMesh::selectmode.

Referenced by EDBM_select_less().

◆ BM_mesh_select_mode_clean_ex()

void BM_mesh_select_mode_clean_ex ( BMesh * bm,
short selectmode )

Select Mode Clean.

Remove isolated selected elements when in a mode doesn't support them. eg: in edge-mode a selected vertex must be connected to a selected edge.

Note
this could be made a part of BM_mesh_select_mode_flush_ex

Definition at line 242 of file bmesh_marking.cc.

References bm, BM_edge_select_set(), BM_EDGES_OF_MESH, BM_elem_flag_disable, BM_elem_flag_test, BM_ELEM_SELECT, BM_FACE_FIRST_LOOP, BM_FACES_OF_MESH, BM_ITER_MESH, BM_vert_select_set(), BM_VERTS_OF_MESH, BMLoop::e, e, BMLoop::next, SCE_SELECT_EDGE, SCE_SELECT_FACE, SCE_SELECT_VERTEX, BMesh::totedgesel, BMesh::totfacesel, BMesh::totvertsel, and v.

Referenced by BM_mesh_select_mode_clean(), and edbm_rip_invoke__edge().

◆ BM_mesh_select_mode_flush()

◆ BM_mesh_select_mode_flush_ex()

void BM_mesh_select_mode_flush_ex ( BMesh * bm,
short selectmode,
eBMSelectionFlushFLags flags )

◆ BM_mesh_select_mode_set()

void BM_mesh_select_mode_set ( BMesh * bm,
int selectmode )

◆ BM_select_history_active_get()

◆ BM_select_history_clear()

◆ BM_select_history_map_create()

struct GHash * BM_select_history_map_create ( BMesh * bm)

◆ BM_select_history_merge_from_targetmap()

void BM_select_history_merge_from_targetmap ( BMesh * bm,
GHash * vert_map,
GHash * edge_map,
GHash * face_map,
bool use_chain )

◆ BM_select_history_validate()

◆ BM_vert_hide_set()

◆ BM_vert_select_set()

void BM_vert_select_set ( BMesh * bm,
BMVert * v,
bool select )

Select Vert.

Changes selection state of a single vertex in a mesh

Definition at line 516 of file bmesh_marking.cc.

References BLI_assert, bm, BM_elem_flag_disable, BM_elem_flag_enable, BM_elem_flag_test, BM_ELEM_HIDDEN, BM_ELEM_SELECT, BM_VERT, BMVert::head, BMHeader::htype, select(), BMesh::totvertsel, and v.

Referenced by _bm_elem_hide_set(), BM_edge_select_set(), BM_elem_select_set(), BM_face_select_set(), BM_mesh_bm_from_me(), BM_mesh_select_mode_clean_ex(), do_lasso_select_mesh__doSelectVert(), do_mesh_box_select__doSelectVert(), edbm_add_edge_face_exec__tricky_finalize_sel(), edbm_backbuf_check_and_select_verts(), edbm_dupli_extrude_cursor_invoke(), edbm_edge_split_selected_verts(), edbm_polybuild_face_at_cursor_invoke(), edbm_polybuild_split_at_cursor_invoke(), edbm_polybuild_transform_at_cursor_invoke(), edbm_rip_edge_invoke(), edbm_rip_invoke__vert(), edbm_select_axis_exec(), edbm_select_linked_exec(), edbm_select_linked_pick_ex(), edbm_select_loose_exec(), EDBM_select_mirrored(), edbm_select_non_manifold_exec(), EDBM_select_pick(), edbm_select_random_exec(), EDBM_select_swap(), edbm_select_ungrouped_exec(), EDBM_selectmode_convert(), EDBM_selectmode_set(), mesh_circle_doSelectVert(), ringsel_finish(), blender::ed::object::select_editbmesh_hook(), similar_vert_select_exec(), TEST(), uv_hide_exec(), uvedit_edge_select_disable(), uvedit_edge_select_enable(), uvedit_uv_select_disable(), uvedit_uv_select_enable(), verttag_set_cb(), and blender::ed::object::vgroup_select_verts().