Blender V5.0
bmesh_operator_api.hh File Reference
#include "BLI_ghash.h"
#include "BLI_utildefines.h"
#include <cstdarg>
#include "bmesh_class.hh"

Go to the source code of this file.

Classes

union  eBMOpSlotSubType_Union
struct  BMO_FlagSet
struct  BMOpSlot
struct  BMOperator
struct  BMOSlotType
struct  BMOpDefine
struct  BMOIter

Macros

#define BMO_elem_flag_test(bm, ele, oflag)
#define BMO_elem_flag_test_bool(bm, ele, oflag)
#define BMO_elem_flag_enable(bm, ele, oflag)
#define BMO_elem_flag_disable(bm, ele, oflag)
#define BMO_elem_flag_set(bm, ele, oflag, val)
#define BMO_elem_flag_toggle(bm, ele, oflag)
#define _BMO_CAST_V_CONST(e)
#define _BMO_CAST_E_CONST(e)
#define _BMO_CAST_F_CONST(e)
#define _BMO_CAST_V(e)
#define _BMO_CAST_E(e)
#define _BMO_CAST_F(e)
#define BMO_vert_flag_test(bm, e, oflag)
#define BMO_vert_flag_test_bool(bm, e, oflag)
#define BMO_vert_flag_enable(bm, e, oflag)
#define BMO_vert_flag_disable(bm, e, oflag)
#define BMO_vert_flag_set(bm, e, oflag, val)
#define BMO_vert_flag_toggle(bm, e, oflag)
#define BMO_edge_flag_test(bm, e, oflag)
#define BMO_edge_flag_test_bool(bm, e, oflag)
#define BMO_edge_flag_enable(bm, e, oflag)
#define BMO_edge_flag_disable(bm, e, oflag)
#define BMO_edge_flag_set(bm, e, oflag, val)
#define BMO_edge_flag_toggle(bm, e, oflag)
#define BMO_face_flag_test(bm, e, oflag)
#define BMO_face_flag_test_bool(bm, e, oflag)
#define BMO_face_flag_enable(bm, e, oflag)
#define BMO_face_flag_disable(bm, e, oflag)
#define BMO_face_flag_set(bm, e, oflag, val)
#define BMO_face_flag_toggle(bm, e, oflag)
#define BMO_OP_SLOT_TOTAL_TYPES   11
#define BMO_SLOT_AS_BOOL(slot)
#define BMO_SLOT_AS_INT(slot)
#define BMO_SLOT_AS_FLOAT(slot)
#define BMO_SLOT_AS_VECTOR(slot)
#define BMO_SLOT_AS_MATRIX(slot)
#define BMO_SLOT_AS_BUFFER(slot)
#define BMO_SLOT_AS_GHASH(slot)
#define BMO_ASSERT_SLOT_IN_OP(slot, op)
#define BMO_OP_MAX_SLOTS   21
#define BMO_FLAG_DEFAULTS   BMO_FLAG_RESPECT_HIDE
#define MAX_SLOTNAME   32
#define BMO_slot_buffer_append(op_src, slots_src, slot_name_src, op_dst, slots_dst, slot_name_dst)
#define BMO_ITER(ele, iter, slot_args, slot_name, restrict_flag)
#define BMO_ITER_INDEX(ele, iter, slot_args, slot_name, restrict_flag, i_)

Enumerations

enum  eBMOpSlotType {
  BMO_OP_SLOT_BOOL = 1 , BMO_OP_SLOT_INT = 2 , BMO_OP_SLOT_FLT = 3 , BMO_OP_SLOT_PTR = 4 ,
  BMO_OP_SLOT_MAT = 5 , BMO_OP_SLOT_VEC = 8 , BMO_OP_SLOT_ELEMENT_BUF = 9 , BMO_OP_SLOT_MAPPING = 10
}
enum  eBMOpSlotSubType_Elem { BMO_OP_SLOT_SUBTYPE_ELEM_VERT = BM_VERT , BMO_OP_SLOT_SUBTYPE_ELEM_EDGE = BM_EDGE , BMO_OP_SLOT_SUBTYPE_ELEM_FACE = BM_FACE , BMO_OP_SLOT_SUBTYPE_ELEM_IS_SINGLE = (BM_FACE << 1) }
enum  eBMOpSlotSubType_Map {
  BMO_OP_SLOT_SUBTYPE_MAP_EMPTY = 64 , BMO_OP_SLOT_SUBTYPE_MAP_ELEM = 65 , BMO_OP_SLOT_SUBTYPE_MAP_FLT = 66 , BMO_OP_SLOT_SUBTYPE_MAP_INT = 67 ,
  BMO_OP_SLOT_SUBTYPE_MAP_BOOL = 68 , BMO_OP_SLOT_SUBTYPE_MAP_INTERNAL = 69
}
enum  eBMOpSlotSubType_Ptr {
  BMO_OP_SLOT_SUBTYPE_PTR_BMESH = 100 , BMO_OP_SLOT_SUBTYPE_PTR_SCENE = 101 , BMO_OP_SLOT_SUBTYPE_PTR_OBJECT = 102 , BMO_OP_SLOT_SUBTYPE_PTR_MESH = 103 ,
  BMO_OP_SLOT_SUBTYPE_PTR_STRUCT = 104
}
enum  eBMOpSlotSubType_Int { BMO_OP_SLOT_SUBTYPE_INT_ENUM = 200 , BMO_OP_SLOT_SUBTYPE_INT_FLAG = 201 }
enum  BMOpTypeFlag {
  BMO_OPTYPE_FLAG_NOP = 0 , BMO_OPTYPE_FLAG_UNTAN_MULTIRES = (1 << 0) , BMO_OPTYPE_FLAG_NORMALS_CALC = (1 << 1) , BMO_OPTYPE_FLAG_SELECT_FLUSH = (1 << 2) ,
  BMO_OPTYPE_FLAG_SELECT_VALIDATE = (1 << 3) , BMO_OPTYPE_FLAG_INVALIDATE_CLNOR_ALL = (1 << 4)
}
enum  { BMO_FLAG_RESPECT_HIDE = 1 }
enum  {
  DEL_VERTS = 1 , DEL_EDGES , DEL_ONLYFACES , DEL_EDGESFACES ,
  DEL_FACES , DEL_FACES_KEEP_BOUNDARY , DEL_ONLYTAGGED
}
enum  BMO_SymmDirection {
  BMO_SYMMETRIZE_NEGATIVE_X , BMO_SYMMETRIZE_NEGATIVE_Y , BMO_SYMMETRIZE_NEGATIVE_Z , BMO_SYMMETRIZE_POSITIVE_X ,
  BMO_SYMMETRIZE_POSITIVE_Y , BMO_SYMMETRIZE_POSITIVE_Z
}
enum  BMO_Delimit {
  BMO_DELIM_NORMAL = 1 << 0 , BMO_DELIM_MATERIAL = 1 << 1 , BMO_DELIM_SEAM = 1 << 2 , BMO_DELIM_SHARP = 1 << 3 ,
  BMO_DELIM_UV = 1 << 4
}

Functions

BLI_INLINE BMFlagLayerBMO_elem_flag_from_header (BMHeader *ele_head)
BLI_INLINE short _bmo_elem_flag_test (BMesh *bm, const BMFlagLayer *oflags, short oflag)
BLI_INLINE bool _bmo_elem_flag_test_bool (BMesh *bm, const BMFlagLayer *oflags, short oflag)
BLI_INLINE void _bmo_elem_flag_enable (BMesh *bm, BMFlagLayer *oflags, short oflag)
BLI_INLINE void _bmo_elem_flag_disable (BMesh *bm, BMFlagLayer *oflags, short oflag)
BLI_INLINE void _bmo_elem_flag_set (BMesh *bm, BMFlagLayer *oflags, short oflag, int val)
BLI_INLINE void _bmo_elem_flag_toggle (BMesh *bm, BMFlagLayer *oflags, short oflag)
void BMO_op_flag_enable (BMesh *bm, BMOperator *op, int op_flag)
void BMO_op_flag_disable (BMesh *bm, BMOperator *op, int op_flag)
void BMO_mesh_flag_disable_all (BMesh *bm, BMOperator *op, char htype, short oflag)
void BMO_mesh_selected_remap (BMesh *bm, BMOpSlot *slot_vert_map, BMOpSlot *slot_edge_map, BMOpSlot *slot_face_map, bool check_select)
void _bmo_slot_buffer_append (BMOpSlot slot_args_dst[BMO_OP_MAX_SLOTS], const char *slot_name_dst, BMOpSlot slot_args_src[BMO_OP_MAX_SLOTS], const char *slot_name_src, struct MemArena *arena_dst)
void BMO_slot_buffer_from_enabled_flag (BMesh *bm, BMOperator *op, BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name, char htype, short oflag)
void BMO_slot_buffer_from_disabled_flag (BMesh *bm, BMOperator *op, BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name, char htype, short oflag)
void BMO_slot_buffer_flag_enable (BMesh *bm, BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name, char htype, short oflag)
 BMO_FLAG_BUFFER.
void BMO_slot_buffer_flag_disable (BMesh *bm, BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name, char htype, short oflag)
 BMO_FLAG_BUFFER.
void BMO_slot_buffer_hflag_enable (BMesh *bm, BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name, char htype, char hflag, bool do_flush)
 BMO_FLAG_BUFFER.
void BMO_slot_buffer_hflag_disable (BMesh *bm, BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name, char htype, char hflag, bool do_flush)
 BMO_FLAG_BUFFER.
void BMO_slot_buffer_from_enabled_hflag (BMesh *bm, BMOperator *op, BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name, char htype, char hflag)
void BMO_slot_buffer_from_disabled_hflag (BMesh *bm, BMOperator *op, BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name, char htype, char hflag)
void BMO_slot_buffer_from_array (BMOperator *op, BMOpSlot *slot, BMHeader **ele_buffer, int ele_buffer_len)
void BMO_slot_buffer_from_single (BMOperator *op, BMOpSlot *slot, BMHeader *ele)
void * BMO_slot_buffer_get_single (BMOpSlot *slot)
int BMO_slot_buffer_len (BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name)
int BMO_slot_map_len (BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name)
void BMO_slot_map_insert (BMOperator *op, BMOpSlot *slot, const void *element, const void *data)
void BMO_slot_map_to_flag (BMesh *bm, BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name, char htype, short oflag)
void * BMO_slot_buffer_alloc (BMOperator *op, BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name, int len)
void BMO_slot_buffer_from_all (BMesh *bm, BMOperator *op, BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name, char htype)
 BMO_ALL_TO_SLOT.
void * BMO_slot_buffer_get_first (BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name)
void * BMO_iter_new (BMOIter *iter, BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name, char restrictmask)
 New Iterator.
void * BMO_iter_step (BMOIter *iter)
void ** BMO_iter_map_value_p (BMOIter *iter)
void * BMO_iter_map_value_ptr (BMOIter *iter)
float BMO_iter_map_value_float (BMOIter *iter)
int BMO_iter_map_value_int (BMOIter *iter)
bool BMO_iter_map_value_bool (BMOIter *iter)
int BMO_opcode_from_opname (const char *opname)
BMesh Operator API
Note
data types that use pointers (arrays, etc) must never have it set directly. Don't BMO_slot_ptr_set to pass in a list of edges or any arrays.
void BMO_op_init (BMesh *bm, BMOperator *op, int flag, const char *opname)
 BMESH OPSTACK INIT OP.
void BMO_op_exec (BMesh *bm, BMOperator *op)
 BMESH OPSTACK EXEC OP.
void BMO_op_finish (BMesh *bm, BMOperator *op)
 BMESH OPSTACK FINISH OP.
int BMO_mesh_enabled_flag_count (BMesh *bm, char htype, short oflag)
int BMO_mesh_disabled_flag_count (BMesh *bm, char htype, short oflag)
void BMO_push (BMesh *bm, BMOperator *op)
 BMESH OPSTACK PUSH.
void BMO_pop (BMesh *bm)
 BMESH OPSTACK POP.
Formatted Operator Initialization/Execution

Format Strings for BMOperator Initialization.

This system is used to execute or initialize an operator, using a formatted-string system.

The basic format for the format string is: [operatorname] [slot_name]=%[code] [slot_name]=%[code]

Example:

"delete context=%i geom=%hv",
@ BM_ELEM_SELECT
BMesh * bm
@ DEL_ONLYFACES
bool BMO_op_callf(BMesh *bm, int flag, const char *fmt,...)
#define BMO_FLAG_DEFAULTS

Primitive Types

Pass an existing slot which is copied to either an input or output slot. Taking the operator and slot-name pair of args (BMOperator *, const char *).

  • s - slot_in (lower case)
  • S - slot_out (upper case) Element Buffer (BMO_OP_SLOT_ELEMENT_BUF)
  • e - single element vert/edge/face (use with BMO_OP_SLOT_SUBTYPE_ELEM_IS_SINGLE).
  • eb - elem buffer, take an array and a length.
  • av - all verts
  • ae - all edges
  • af - all faces
  • hv - header flagged verts (hflag)
  • he - header flagged edges (hflag)
  • hf - header flagged faces (hflag)
  • Hv - header flagged verts (hflag off)
  • He - header flagged edges (hflag off)
  • Hf - header flagged faces (hflag off)
  • fv - flagged verts (oflag)
  • fe - flagged edges (oflag)
  • ff - flagged faces (oflag)
  • Fv - flagged verts (oflag off)
  • Fe - flagged edges (oflag off)
  • Ff - flagged faces (oflag off)
Note
The common v/e/f suffix can be mixed, so avef is can be used for all verts, edges and faces. Order is not important so Hfev is also valid (all un-flagged verts, edges and faces).
bool BMO_op_callf (BMesh *bm, int flag, const char *fmt,...)
bool BMO_op_initf (BMesh *bm, BMOperator *op, int flag, const char *fmt,...)
bool BMO_op_vinitf (BMesh *bm, BMOperator *op, int flag, const char *fmt, va_list vlist)
BMesh Operator Slot Get/Set
void BMO_slot_float_set (BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name, float f)
float BMO_slot_float_get (BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name)
void BMO_slot_int_set (BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name, int i)
int BMO_slot_int_get (BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name)
void BMO_slot_bool_set (BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name, bool i)
bool BMO_slot_bool_get (BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name)
void * BMO_slot_as_arrayN (BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name, int *len)
void BMO_slot_ptr_set (BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name, void *p)
void * BMO_slot_ptr_get (BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name)
void BMO_slot_vec_set (BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name, const float vec[3])
void BMO_slot_vec_get (BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name, float r_vec[3])
void BMO_slot_mat_set (BMOperator *op, BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name, const float *mat, int size)
void BMO_slot_mat4_get (BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name, float r_mat[4][4])
void BMO_slot_mat3_get (BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name, float r_mat[3][3])

Variables

const int BMO_OPSLOT_TYPEINFO [BMO_OP_SLOT_TOTAL_TYPES]

BMesh Operator Slot Access

#define BMO_slot_copy(op_src, slots_src, slot_name_src, op_dst, slots_dst, slot_name_dst)
bool BMO_slot_exists (BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *identifier)
 BMESH OPSTACK HAS SLOT.
BMOpSlotBMO_slot_get (BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *identifier)
 BMESH OPSTACK GET SLOT.
void _bmo_slot_copy (BMOpSlot slot_args_src[BMO_OP_MAX_SLOTS], const char *slot_name_src, BMOpSlot slot_args_dst[BMO_OP_MAX_SLOTS], const char *slot_name_dst, struct MemArena *arena_dst)
 BMESH OPSTACK COPY SLOT.

Macro Definition Documentation

◆ _BMO_CAST_E

#define _BMO_CAST_E ( e)
Value:
#define BM_CHECK_TYPE_EDGE_NONCONST(ele)
ATTR_WARN_UNUSED_RESULT const BMVert const BMEdge * e

Definition at line 138 of file bmesh_operator_api.hh.

◆ _BMO_CAST_E_CONST

#define _BMO_CAST_E_CONST ( e)
Value:
#define BM_CHECK_TYPE_EDGE(ele)

Definition at line 135 of file bmesh_operator_api.hh.

◆ _BMO_CAST_F

#define _BMO_CAST_F ( e)
Value:

Definition at line 139 of file bmesh_operator_api.hh.

◆ _BMO_CAST_F_CONST

#define _BMO_CAST_F_CONST ( e)
Value:
#define BM_CHECK_TYPE_FACE(ele)

Definition at line 136 of file bmesh_operator_api.hh.

◆ _BMO_CAST_V

#define _BMO_CAST_V ( e)
Value:

Definition at line 137 of file bmesh_operator_api.hh.

◆ _BMO_CAST_V_CONST

#define _BMO_CAST_V_CONST ( e)
Value:
#define BM_CHECK_TYPE_VERT(ele)

Definition at line 134 of file bmesh_operator_api.hh.

◆ BMO_ASSERT_SLOT_IN_OP

#define BMO_ASSERT_SLOT_IN_OP ( slot,
op )
Value:
BLI_assert(((slot >= (op)->slots_in) && (slot < &(op)->slots_in[BMO_OP_MAX_SLOTS])) || \
((slot >= (op)->slots_out) && (slot < &(op)->slots_out[BMO_OP_MAX_SLOTS])))
#define BLI_assert(a)
Definition BLI_assert.h:46
#define BMO_OP_MAX_SLOTS

Definition at line 282 of file bmesh_operator_api.hh.

Referenced by BMO_slot_buffer_from_array(), BMO_slot_buffer_from_single(), and BMO_slot_map_insert().

◆ BMO_edge_flag_disable

#define BMO_edge_flag_disable ( bm,
e,
oflag )
Value:
BLI_INLINE void _bmo_elem_flag_disable(BMesh *bm, BMFlagLayer *oflags, short oflag)
#define _BMO_CAST_E(e)
ATTR_WARN_UNUSED_RESULT const BMFlagLayer const short oflag
ATTR_WARN_UNUSED_RESULT const BMFlagLayer * oflags

Definition at line 158 of file bmesh_operator_api.hh.

Referenced by bm_edgering_pair_subdiv(), BMO_mesh_delete_oflag_context(), BMO_mesh_flag_disable_all(), bridge_loop_pair(), and disable_flag_out_edge().

◆ BMO_edge_flag_enable

◆ BMO_edge_flag_set

#define BMO_edge_flag_set ( bm,
e,
oflag,
val )
Value:
BLI_INLINE void _bmo_elem_flag_set(BMesh *bm, BMFlagLayer *oflags, short oflag, int val)

Definition at line 160 of file bmesh_operator_api.hh.

Referenced by bmo_face_flag_set_flush(), and select_linked_delimit_begin().

◆ BMO_edge_flag_test

◆ BMO_edge_flag_test_bool

#define BMO_edge_flag_test_bool ( bm,
e,
oflag )
Value:
BLI_INLINE bool _bmo_elem_flag_test_bool(BMesh *bm, const BMFlagLayer *oflags, short oflag)

Definition at line 155 of file bmesh_operator_api.hh.

Referenced by bm_edge_rim_test_cb(), bm_edge_test_cb(), BMO_iter_elem_count_flag(), bmo_mesh_flag_count(), and bmo_slot_buffer_from_flag().

◆ BMO_edge_flag_toggle

#define BMO_edge_flag_toggle ( bm,
e,
oflag )
Value:
BLI_INLINE void _bmo_elem_flag_toggle(BMesh *bm, BMFlagLayer *oflags, short oflag)

Definition at line 162 of file bmesh_operator_api.hh.

◆ BMO_elem_flag_disable

#define BMO_elem_flag_disable ( bm,
ele,
oflag )
Value:
#define BM_CHECK_TYPE_ELEM_NONCONST(ele)
BLI_INLINE BMFlagLayer * BMO_elem_flag_from_header(BMHeader *ele_head)

Definition at line 77 of file bmesh_operator_api.hh.

Referenced by BMO_slot_buffer_flag_disable().

◆ BMO_elem_flag_enable

◆ BMO_elem_flag_set

#define BMO_elem_flag_set ( bm,
ele,
oflag,
val )
Value:

Definition at line 80 of file bmesh_operator_api.hh.

◆ BMO_elem_flag_test

#define BMO_elem_flag_test ( bm,
ele,
oflag )
Value:

Definition at line 70 of file bmesh_operator_api.hh.

Referenced by bmo_extrude_face_region_exec(), and bmo_split_exec().

◆ BMO_elem_flag_test_bool

#define BMO_elem_flag_test_bool ( bm,
ele,
oflag )
Value:

Definition at line 72 of file bmesh_operator_api.hh.

◆ BMO_elem_flag_toggle

#define BMO_elem_flag_toggle ( bm,
ele,
oflag )
Value:

Definition at line 85 of file bmesh_operator_api.hh.

◆ BMO_face_flag_disable

◆ BMO_face_flag_enable

◆ BMO_face_flag_set

#define BMO_face_flag_set ( bm,
e,
oflag,
val )

◆ BMO_face_flag_test

◆ BMO_face_flag_test_bool

◆ BMO_face_flag_toggle

#define BMO_face_flag_toggle ( bm,
e,
oflag )
Value:

Definition at line 173 of file bmesh_operator_api.hh.

◆ BMO_FLAG_DEFAULTS

◆ BMO_ITER

#define BMO_ITER ( ele,
iter,
slot_args,
slot_name,
restrict_flag )
Value:
for (BM_CHECK_TYPE_ELEM_ASSIGN(ele) = BMO_iter_new(iter, slot_args, slot_name, restrict_flag); \
ele; \
BM_CHECK_TYPE_ELEM_ASSIGN(ele) = BMO_iter_step(iter))
#define BM_CHECK_TYPE_ELEM_ASSIGN(ele)
void * BMO_iter_new(BMOIter *iter, BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_name, char restrictmask)
New Iterator.
void * BMO_iter_step(BMOIter *iter)

Definition at line 826 of file bmesh_operator_api.hh.

Referenced by bm_rotate_edges_simple(), bmo_average_vert_facedata_exec(), bmo_beautify_fill_exec(), bmo_bevel_exec(), bmo_bisect_edges_exec(), bmo_bisect_plane_exec(), bmo_connect_verts_concave_exec(), bmo_connect_verts_exec(), bmo_connect_verts_nonplanar_exec(), bmo_contextual_create_exec(), bmo_dissolve_edges_exec(), bmo_dissolve_faces_exec(), bmo_dissolve_verts_exec(), bmo_edgeloop_fill_exec(), bmo_edgenet_fill_exec(), bmo_edgenet_prepare_exec(), bmo_extrude_discrete_faces_exec(), bmo_extrude_edge_only_exec(), bmo_extrude_face_region_exec(), bmo_flip_quad_tessellation_exec(), bmo_holes_fill_exec(), bmo_inset_individual_exec(), bmo_inset_region_exec(), bmo_join_triangles_exec(), bmo_mirror_exec(), bmo_offset_edgeloops_exec(), bmo_pointmerge_exec(), bmo_pointmerge_facedata_exec(), bmo_poke_exec(), bmo_region_extend_contract(), bmo_region_extend_expand(), bmo_reverse_colors_exec(), bmo_reverse_faces_exec(), bmo_reverse_uvs_exec(), bmo_rotate_colors_exec(), bmo_rotate_edges_exec(), bmo_rotate_uvs_exec(), bmo_smooth_laplacian_vert_exec(), bmo_smooth_vert_exec(), bmo_split_exec(), bmo_subdivide_edgering_exec(), bmo_symmetrize_exec(), bmo_transform_exec(), bmo_triangle_fill_exec(), bridge_loop_pair(), build_hull(), edbm_dupli_extrude_cursor_invoke(), edbm_extrude_discrete_faces(), edbm_extrude_ex(), edbm_fill_grid_split_join_init(), edbm_quads_convert_to_tris_exec(), skin_fix_hole_no_good_verts(), validate_solution(), and volume_preservation().

◆ BMO_ITER_INDEX

#define BMO_ITER_INDEX ( ele,
iter,
slot_args,
slot_name,
restrict_flag,
i_ )
Value:
for (BM_CHECK_TYPE_ELEM_ASSIGN(ele) = BMO_iter_new(iter, slot_args, slot_name, restrict_flag), \
i_ = 0; \
ele; \
BM_CHECK_TYPE_ELEM_ASSIGN(ele) = BMO_iter_step(iter), i_++)

Definition at line 831 of file bmesh_operator_api.hh.

Referenced by bmo_planar_faces_exec().

◆ BMO_OP_MAX_SLOTS

◆ BMO_OP_SLOT_TOTAL_TYPES

#define BMO_OP_SLOT_TOTAL_TYPES   11

Definition at line 203 of file bmesh_operator_api.hh.

◆ BMO_SLOT_AS_BOOL

#define BMO_SLOT_AS_BOOL ( slot)
Value:
((slot)->data.i)

Definition at line 274 of file bmesh_operator_api.hh.

Referenced by bpy_slot_from_py(), and bpy_slot_to_py().

◆ BMO_SLOT_AS_BUFFER

#define BMO_SLOT_AS_BUFFER ( slot)
Value:
((slot)->data.buf)

Definition at line 279 of file bmesh_operator_api.hh.

Referenced by bm_rotate_edges_shared(), bmo_dissolve_limit_exec(), and bpy_slot_to_py().

◆ BMO_SLOT_AS_FLOAT

#define BMO_SLOT_AS_FLOAT ( slot)
Value:
((slot)->data.f)

Definition at line 276 of file bmesh_operator_api.hh.

Referenced by bpy_slot_from_py(), and bpy_slot_to_py().

◆ BMO_SLOT_AS_GHASH

#define BMO_SLOT_AS_GHASH ( slot)
Value:
((slot)->data.ghash)

Definition at line 280 of file bmesh_operator_api.hh.

Referenced by bpy_slot_to_py(), and EDBM_automerge_and_split().

◆ BMO_SLOT_AS_INT

#define BMO_SLOT_AS_INT ( slot)
Value:
((slot)->data.i)

Definition at line 275 of file bmesh_operator_api.hh.

Referenced by bpy_slot_from_py(), and bpy_slot_to_py().

◆ BMO_SLOT_AS_MATRIX

#define BMO_SLOT_AS_MATRIX ( slot)
Value:
((float (*)[4])((slot)->data.p))
nullptr float

Definition at line 278 of file bmesh_operator_api.hh.

Referenced by BMO_slot_mat3_get(), BMO_slot_mat4_get(), and bpy_slot_to_py().

◆ BMO_SLOT_AS_VECTOR

#define BMO_SLOT_AS_VECTOR ( slot)
Value:
((slot)->data.vec)

Definition at line 277 of file bmesh_operator_api.hh.

Referenced by bpy_slot_from_py(), and bpy_slot_to_py().

◆ BMO_slot_buffer_append

#define BMO_slot_buffer_append ( op_src,
slots_src,
slot_name_src,
op_dst,
slots_dst,
slot_name_dst )
Value:
(op_src)->slots_src, slot_name_src, (op_dst)->slots_dst, slot_name_dst, (op_dst)->arena)
void _bmo_slot_buffer_append(BMOpSlot slot_args_dst[BMO_OP_MAX_SLOTS], const char *slot_name_dst, BMOpSlot slot_args_src[BMO_OP_MAX_SLOTS], const char *slot_name_src, struct MemArena *arena_dst)

Copies the values from another slot to the end of the output slot.

Definition at line 610 of file bmesh_operator_api.hh.

◆ BMO_slot_copy

#define BMO_slot_copy ( op_src,
slots_src,
slot_name_src,
op_dst,
slots_dst,
slot_name_dst )
Value:
(op_src)->slots_src, slot_name_src, (op_dst)->slots_dst, slot_name_dst, (op_dst)->arena)
void _bmo_slot_copy(BMOpSlot slot_args_src[BMO_OP_MAX_SLOTS], const char *slot_name_src, BMOpSlot slot_args_dst[BMO_OP_MAX_SLOTS], const char *slot_name_dst, struct MemArena *arena_dst)
BMESH OPSTACK COPY SLOT.

Definition at line 498 of file bmesh_operator_api.hh.

Referenced by bmo_connect_vert_pair_exec(), bmo_contextual_create_exec(), bmo_duplicate_exec(), bmo_extrude_face_region_exec(), BMO_op_vinitf(), bmo_solidify_face_region_exec(), bmo_spin_exec(), bmo_split_exec(), and edbm_automerge_impl().

◆ BMO_vert_flag_disable

◆ BMO_vert_flag_enable

◆ BMO_vert_flag_set

#define BMO_vert_flag_set ( bm,
e,
oflag,
val )

◆ BMO_vert_flag_test

◆ BMO_vert_flag_test_bool

◆ BMO_vert_flag_toggle

#define BMO_vert_flag_toggle ( bm,
e,
oflag )
Value:

Definition at line 151 of file bmesh_operator_api.hh.

◆ MAX_SLOTNAME

#define MAX_SLOTNAME   32

Definition at line 317 of file bmesh_operator_api.hh.

Referenced by bmo_name_to_slotcode(), and BPy_BMO_call().

Enumeration Type Documentation

◆ anonymous enum

anonymous enum
Enumerator
BMO_FLAG_RESPECT_HIDE 

Definition at line 311 of file bmesh_operator_api.hh.

◆ anonymous enum

anonymous enum

Delete "context" slot values, used for operator too.

Enumerator
DEL_VERTS 
DEL_EDGES 
DEL_ONLYFACES 
DEL_EDGESFACES 
DEL_FACES 
DEL_FACES_KEEP_BOUNDARY 
DEL_ONLYTAGGED 

Definition at line 517 of file bmesh_operator_api.hh.

◆ BMO_Delimit

Enumerator
BMO_DELIM_NORMAL 
BMO_DELIM_MATERIAL 
BMO_DELIM_SEAM 
BMO_DELIM_SHARP 
BMO_DELIM_UV 

Definition at line 539 of file bmesh_operator_api.hh.

◆ BMO_SymmDirection

Enumerator
BMO_SYMMETRIZE_NEGATIVE_X 
BMO_SYMMETRIZE_NEGATIVE_Y 
BMO_SYMMETRIZE_NEGATIVE_Z 
BMO_SYMMETRIZE_POSITIVE_X 
BMO_SYMMETRIZE_POSITIVE_Y 
BMO_SYMMETRIZE_POSITIVE_Z 

Definition at line 529 of file bmesh_operator_api.hh.

◆ BMOpTypeFlag

Enumerator
BMO_OPTYPE_FLAG_NOP 
BMO_OPTYPE_FLAG_UNTAN_MULTIRES 

Switch from multires tangent space to absolute coordinates.

BMO_OPTYPE_FLAG_NORMALS_CALC 
BMO_OPTYPE_FLAG_SELECT_FLUSH 
BMO_OPTYPE_FLAG_SELECT_VALIDATE 
BMO_OPTYPE_FLAG_INVALIDATE_CLNOR_ALL 

Definition at line 290 of file bmesh_operator_api.hh.

◆ eBMOpSlotSubType_Elem

Enumerator
BMO_OP_SLOT_SUBTYPE_ELEM_VERT 
BMO_OP_SLOT_SUBTYPE_ELEM_EDGE 
BMO_OP_SLOT_SUBTYPE_ELEM_FACE 
BMO_OP_SLOT_SUBTYPE_ELEM_IS_SINGLE 

Definition at line 206 of file bmesh_operator_api.hh.

◆ eBMOpSlotSubType_Int

Enumerator
BMO_OP_SLOT_SUBTYPE_INT_ENUM 
BMO_OP_SLOT_SUBTYPE_INT_FLAG 

Definition at line 230 of file bmesh_operator_api.hh.

◆ eBMOpSlotSubType_Map

Enumerator
BMO_OP_SLOT_SUBTYPE_MAP_EMPTY 
BMO_OP_SLOT_SUBTYPE_MAP_ELEM 
BMO_OP_SLOT_SUBTYPE_MAP_FLT 
BMO_OP_SLOT_SUBTYPE_MAP_INT 
BMO_OP_SLOT_SUBTYPE_MAP_BOOL 
BMO_OP_SLOT_SUBTYPE_MAP_INTERNAL 

Definition at line 215 of file bmesh_operator_api.hh.

◆ eBMOpSlotSubType_Ptr

Enumerator
BMO_OP_SLOT_SUBTYPE_PTR_BMESH 
BMO_OP_SLOT_SUBTYPE_PTR_SCENE 
BMO_OP_SLOT_SUBTYPE_PTR_OBJECT 
BMO_OP_SLOT_SUBTYPE_PTR_MESH 
BMO_OP_SLOT_SUBTYPE_PTR_STRUCT 

Definition at line 223 of file bmesh_operator_api.hh.

◆ eBMOpSlotType

Enumerator
BMO_OP_SLOT_BOOL 
BMO_OP_SLOT_INT 
BMO_OP_SLOT_FLT 
BMO_OP_SLOT_PTR 
BMO_OP_SLOT_MAT 
BMO_OP_SLOT_VEC 
BMO_OP_SLOT_ELEMENT_BUF 
BMO_OP_SLOT_MAPPING 

Definition at line 184 of file bmesh_operator_api.hh.

Function Documentation

◆ _bmo_elem_flag_disable()

BLI_INLINE void _bmo_elem_flag_disable ( BMesh * bm,
BMFlagLayer * oflags,
short oflag )

Definition at line 48 of file bmesh_operator_api_inline.hh.

References _bmo_elem_flag_disable(), BLI_assert, BLI_INLINE, bm, oflag, and oflags.

Referenced by _bmo_elem_flag_disable().

◆ _bmo_elem_flag_enable()

BLI_INLINE void _bmo_elem_flag_enable ( BMesh * bm,
BMFlagLayer * oflags,
short oflag )

Definition at line 41 of file bmesh_operator_api_inline.hh.

References _bmo_elem_flag_enable(), BLI_assert, BLI_INLINE, bm, oflag, and oflags.

Referenced by _bmo_elem_flag_enable().

◆ _bmo_elem_flag_set()

BLI_INLINE void _bmo_elem_flag_set ( BMesh * bm,
BMFlagLayer * oflags,
short oflag,
int val )

Definition at line 55 of file bmesh_operator_api_inline.hh.

References _bmo_elem_flag_set(), BLI_assert, BLI_INLINE, bm, oflag, and oflags.

Referenced by _bmo_elem_flag_set().

◆ _bmo_elem_flag_test()

BLI_INLINE short _bmo_elem_flag_test ( BMesh * bm,
const BMFlagLayer * oflags,
short oflag )

References BLI_INLINE, bm, oflag, and oflags.

◆ _bmo_elem_flag_test_bool()

BLI_INLINE bool _bmo_elem_flag_test_bool ( BMesh * bm,
const BMFlagLayer * oflags,
short oflag )

References BLI_INLINE, bm, oflag, and oflags.

◆ _bmo_elem_flag_toggle()

BLI_INLINE void _bmo_elem_flag_toggle ( BMesh * bm,
BMFlagLayer * oflags,
short oflag )

Definition at line 67 of file bmesh_operator_api_inline.hh.

References _bmo_elem_flag_toggle(), BLI_assert, BLI_INLINE, bm, oflag, and oflags.

Referenced by _bmo_elem_flag_toggle().

◆ _bmo_slot_buffer_append()

void _bmo_slot_buffer_append ( BMOpSlot slot_args_dst[BMO_OP_MAX_SLOTS],
const char * slot_name_dst,
BMOpSlot slot_args_src[BMO_OP_MAX_SLOTS],
const char * slot_name_src,
struct MemArena * arena_dst )

Copies the values from another slot to the end of the output slot.

Definition at line 931 of file bmesh_operators.cc.

References _bmo_slot_copy(), BLI_assert, BLI_memarena_alloc(), BMO_OP_MAX_SLOTS, BMO_OP_SLOT_ELEMENT_BUF, BMO_OPSLOT_TYPEINFO, BMO_slot_get(), BMOpSlot::buf, BMOpSlot::data, BMOpSlot::len, and BMOpSlot::slot_type.

◆ _bmo_slot_copy()

void _bmo_slot_copy ( BMOpSlot slot_args_src[BMO_OP_MAX_SLOTS],
const char * slot_name_src,
BMOpSlot slot_args_dst[BMO_OP_MAX_SLOTS],
const char * slot_name_dst,
struct MemArena * arena_dst )

◆ BMO_elem_flag_from_header()

BLI_INLINE BMFlagLayer * BMO_elem_flag_from_header ( BMHeader * ele_head)

Definition at line 58 of file bmesh_operator_api.hh.

References BLI_INLINE, BM_EDGE, BM_VERT, and BMHeader::htype.

◆ BMO_iter_map_value_bool()

bool BMO_iter_map_value_bool ( BMOIter * iter)

◆ BMO_iter_map_value_float()

◆ BMO_iter_map_value_int()

int BMO_iter_map_value_int ( BMOIter * iter)

◆ BMO_iter_map_value_p()

void ** BMO_iter_map_value_p ( BMOIter * iter)

Returns a pointer to the key-value when iterating over mappings. remember for pointer maps this will be a pointer to a pointer.

Definition at line 1426 of file bmesh_operators.cc.

References BMOIter::val.

◆ BMO_iter_map_value_ptr()

◆ BMO_iter_new()

void * BMO_iter_new ( BMOIter * iter,
BMOpSlot slot_args[BMO_OP_MAX_SLOTS],
const char * slot_name,
char restrictmask )

◆ BMO_iter_step()

◆ BMO_mesh_disabled_flag_count()

int BMO_mesh_disabled_flag_count ( BMesh * bm,
char htype,
short oflag )

Count the number of elements with the specified flag disabled. type can be a bit-mask of BM_FACE, BM_EDGE, or BM_FACE.

Definition at line 550 of file bmesh_operators.cc.

References bm, bmo_mesh_flag_count(), and oflag.

Referenced by bmo_slot_buffer_from_flag().

◆ BMO_mesh_enabled_flag_count()

int BMO_mesh_enabled_flag_count ( BMesh * bm,
char htype,
short oflag )

Count the number of elements with the specified flag enabled. type can be a bit-mask of BM_FACE, BM_EDGE, or BM_FACE.

Definition at line 545 of file bmesh_operators.cc.

References bm, bmo_mesh_flag_count(), and oflag.

Referenced by bmo_slot_buffer_from_flag().

◆ BMO_mesh_flag_disable_all()

void BMO_mesh_flag_disable_all ( BMesh * bm,
BMOperator * op,
char htype,
short oflag )

◆ BMO_mesh_selected_remap()

void BMO_mesh_selected_remap ( BMesh * bm,
BMOpSlot * slot_vert_map,
BMOpSlot * slot_edge_map,
BMOpSlot * slot_face_map,
bool check_select )

◆ BMO_op_callf()

◆ BMO_op_exec()

void BMO_op_exec ( BMesh * bm,
BMOperator * op )

BMESH OPSTACK EXEC OP.

Executes a passed in operator.

This handles the allocation and freeing of temporary tool flag layers and starting/stopping the modeling loop. Can be called from other operators exec callbacks as well.

Definition at line 166 of file bmesh_operators.cc.

References bm, BM_mesh_elem_toolflags_ensure(), bmesh_edit_begin(), bmesh_edit_end(), BMO_pop(), BMO_push(), BMOperator::exec, and BMOperator::type_flag.

Referenced by bm_bridge_splice_loops(), BM_mesh_esubdivide(), bm_vert_connect_pair(), bmo_collapse_exec(), bmo_connect_vert_pair_exec(), bmo_contextual_create_exec(), bmo_create_icosphere_exec(), bmo_create_uvsphere_exec(), bmo_edgenet_fill_exec(), bmo_extrude_edge_only_exec(), bmo_extrude_face_region_exec(), bmo_holes_fill_exec(), bmo_mirror_exec(), BMO_op_callf(), bmo_pointmerge_exec(), bmo_remove_doubles_exec(), bmo_solidify_face_region_exec(), bmo_spin_exec(), bmo_split_exec(), bmo_symmetrize_exec(), bmo_triangle_fill_exec(), BPy_BMO_call(), bridge_loop_pair(), build_hull(), collapse_face_corners(), edbm_add_edge_face_exec(), EDBM_automerge_and_split(), edbm_automerge_impl(), edbm_bevel_calc(), edbm_bridge_edge_loops_for_single_editmesh(), edbm_connect_vert_pair(), edbm_dupli_extrude_cursor_invoke(), edbm_duplicate_exec(), edbm_edge_rotate_selected_exec(), edbm_extrude_discrete_faces(), edbm_extrude_edges_indiv(), edbm_extrude_ex(), edbm_extrude_verts_indiv(), edbm_fill_exec(), edbm_fill_grid_split_join_finish(), edbm_fill_grid_split_join_init(), edbm_inset_calc(), edbm_offset_edgeloop_exec(), EDBM_op_call_and_selectf(), EDBM_op_call_silentf(), EDBM_op_callf(), edbm_poke_face_exec(), edbm_quads_convert_to_tris_exec(), edbm_remove_doubles_exec(), edbm_reverse_colors_exec(), edbm_reverse_uvs_exec(), edbm_rotate_colors_exec(), edbm_rotate_uvs_exec(), edbm_screw_exec(), EDBM_select_less(), EDBM_select_more(), edbm_solidify_exec(), edbm_spin_exec(), edbm_split_exec(), edbm_unsubdivide_exec(), edbm_wireframe_exec(), mesh_bisect_exec(), mesh_symmetrize_exec(), and skin_fix_hole_no_good_verts().

◆ BMO_op_finish()

◆ BMO_op_flag_disable()

void BMO_op_flag_disable ( BMesh * bm,
BMOperator * op,
int op_flag )

Definition at line 55 of file bmesh_operators.cc.

References BMOperator::flag.

◆ BMO_op_flag_enable()

void BMO_op_flag_enable ( BMesh * bm,
BMOperator * op,
int op_flag )

Definition at line 50 of file bmesh_operators.cc.

References BMOperator::flag.

◆ BMO_op_init()

◆ BMO_op_initf()

◆ BMO_op_vinitf()

◆ BMO_opcode_from_opname()

int BMO_opcode_from_opname ( const char * opname)

◆ BMO_pop()

void BMO_pop ( BMesh * bm)

BMESH OPSTACK POP.

Pops the operator-stack one level and frees a flag layer if appropriate

BMESH_TODO: investigate NOT freeing flag layers.

Definition at line 75 of file bmesh_operators.cc.

References bm, and bmo_flag_layer_free().

Referenced by BMO_op_exec(), build_skin(), and walker_deselect_nth().

◆ BMO_push()

void BMO_push ( BMesh * bm,
BMOperator * op )

BMESH OPSTACK PUSH.

Pushes the operator-stack down one level and allocates a new flag layer if appropriate.

Definition at line 60 of file bmesh_operators.cc.

References BLI_assert, bm, bmo_flag_layer_alloc(), and bmo_flag_layer_clear().

Referenced by BMO_op_exec(), build_skin(), and walker_deselect_nth().

◆ BMO_slot_as_arrayN()

void * BMO_slot_as_arrayN ( BMOpSlot slot_args[BMO_OP_MAX_SLOTS],
const char * slot_name,
int * len )

◆ BMO_slot_bool_get()

bool BMO_slot_bool_get ( BMOpSlot slot_args[BMO_OP_MAX_SLOTS],
const char * slot_name )

Definition at line 453 of file bmesh_operators.cc.

References BLI_assert, BMO_OP_MAX_SLOTS, BMO_OP_SLOT_BOOL, BMO_slot_get(), BMOpSlot::data, BMOpSlot::i, and BMOpSlot::slot_type.

Referenced by bm_edge_delmimit_data_from_op(), bmesh_find_doubles_common(), bmo_beautify_fill_exec(), bmo_bevel_exec(), bmo_bisect_plane_exec(), bmo_bridge_loops_exec(), bmo_collapse_exec(), bmo_connect_verts_exec(), bmo_contextual_create_exec(), bmo_create_circle_exec(), bmo_create_cone_exec(), bmo_create_cube_exec(), bmo_create_grid_exec(), bmo_create_icosphere_exec(), bmo_create_monkey_exec(), bmo_create_uvsphere_exec(), bmo_dissolve_edges_exec(), bmo_dissolve_faces_exec(), bmo_dissolve_limit_exec(), bmo_dissolve_verts_exec(), bmo_edgeloop_fill_exec(), bmo_edgenet_fill_exec(), bmo_extrude_discrete_faces_exec(), bmo_extrude_edge_only_exec(), bmo_extrude_face_region_exec(), bmo_extrude_vert_indiv_exec(), bmo_face_attribute_fill_exec(), bmo_grid_fill_exec(), bmo_inset_individual_exec(), bmo_inset_region_exec(), bmo_join_triangles_exec(), bmo_mesh_copy(), bmo_mesh_to_bmesh_exec(), bmo_mirror_exec(), bmo_offset_edgeloops_exec(), bmo_poke_exec(), bmo_region_extend_exec(), bmo_reverse_faces_exec(), bmo_rotate_colors_exec(), bmo_rotate_edges_exec(), bmo_rotate_uvs_exec(), bmo_smooth_laplacian_vert_exec(), bmo_smooth_vert_exec(), bmo_spin_exec(), bmo_split_edges_exec(), bmo_split_exec(), bmo_subdivide_edges_exec(), bmo_transform_exec(), bmo_triangle_fill_exec(), bmo_weld_verts_exec(), and bmo_wireframe_exec().

◆ BMO_slot_bool_set()

void BMO_slot_bool_set ( BMOpSlot slot_args[BMO_OP_MAX_SLOTS],
const char * slot_name,
bool i )

◆ BMO_slot_buffer_alloc()

◆ BMO_slot_buffer_flag_disable()

void BMO_slot_buffer_flag_disable ( BMesh * bm,
BMOpSlot slot_args[BMO_OP_MAX_SLOTS],
const char * slot_name,
char htype,
short oflag )

◆ BMO_slot_buffer_flag_enable()

◆ BMO_slot_buffer_from_all()

void BMO_slot_buffer_from_all ( BMesh * bm,
BMOperator * op,
BMOpSlot slot_args[BMO_OP_MAX_SLOTS],
const char * slot_name,
char htype )

BMO_ALL_TO_SLOT.

Copies all elements of a certain type into an operator slot.

Definition at line 740 of file bmesh_operators.cc.

References BLI_assert, bm, BM_ALL_NOLOOP, BM_EDGE, BM_EDGES_OF_MESH, BM_FACE, BM_FACES_OF_MESH, BM_ITER_MESH, BM_VERT, BM_VERTS_OF_MESH, BMO_OP_MAX_SLOTS, BMO_OP_SLOT_ELEMENT_BUF, BMO_slot_buffer_alloc(), BMO_slot_get(), i, and output.

Referenced by BMO_op_vinitf(), and bpy_slot_from_py().

◆ BMO_slot_buffer_from_array()

void BMO_slot_buffer_from_array ( BMOperator * op,
BMOpSlot * slot,
BMHeader ** ele_buffer,
int ele_buffer_len )

◆ BMO_slot_buffer_from_disabled_flag()

void BMO_slot_buffer_from_disabled_flag ( BMesh * bm,
BMOperator * op,
BMOpSlot slot_args[BMO_OP_MAX_SLOTS],
const char * slot_name,
char htype,
short oflag )

Puts every element of type 'type' (which is a bit-mask) without tool flag 'flag', into a slot.

Definition at line 1046 of file bmesh_operators.cc.

References bm, BMO_OP_MAX_SLOTS, bmo_slot_buffer_from_flag(), and oflag.

Referenced by BMO_op_vinitf().

◆ BMO_slot_buffer_from_disabled_hflag()

void BMO_slot_buffer_from_disabled_hflag ( BMesh * bm,
BMOperator * op,
BMOpSlot slot_args[BMO_OP_MAX_SLOTS],
const char * slot_name,
char htype,
char hflag )

Puts every element of type 'type' (which is a bit-mask) without header flag 'flag', into a slot.

Note
ignores hidden elements (e.g. elements with header flag BM_ELEM_HIDDEN set).

Definition at line 879 of file bmesh_operators.cc.

References bm, BMO_OP_MAX_SLOTS, and bmo_slot_buffer_from_hflag().

Referenced by BMO_op_vinitf().

◆ BMO_slot_buffer_from_enabled_flag()

◆ BMO_slot_buffer_from_enabled_hflag()

void BMO_slot_buffer_from_enabled_hflag ( BMesh * bm,
BMOperator * op,
BMOpSlot slot_args[BMO_OP_MAX_SLOTS],
const char * slot_name,
char htype,
char hflag )

Puts every element of type 'type' (which is a bit-mask) with header flag 'flag', into a slot.

Note
ignores hidden elements (e.g. elements with header flag BM_ELEM_HIDDEN set).

Definition at line 869 of file bmesh_operators.cc.

References bm, BMO_OP_MAX_SLOTS, and bmo_slot_buffer_from_hflag().

Referenced by bmo_bevel_exec(), bmo_edgenet_fill_exec(), bmo_face_attribute_fill_exec(), bmo_holes_fill_exec(), BMO_op_vinitf(), bmo_split_edges_exec(), bmo_triangulate_exec(), bmo_wireframe_exec(), edbm_extrude_ex(), edbm_fill_grid_split_join_init(), and edbm_inset_calc().

◆ BMO_slot_buffer_from_single()

◆ BMO_slot_buffer_get_first()

void * BMO_slot_buffer_get_first ( BMOpSlot slot_args[BMO_OP_MAX_SLOTS],
const char * slot_name )

◆ BMO_slot_buffer_get_single()

◆ BMO_slot_buffer_hflag_disable()

void BMO_slot_buffer_hflag_disable ( BMesh * bm,
BMOpSlot slot_args[BMO_OP_MAX_SLOTS],
const char * slot_name,
char htype,
char hflag,
bool do_flush )

◆ BMO_slot_buffer_hflag_enable()

void BMO_slot_buffer_hflag_enable ( BMesh * bm,
BMOpSlot slot_args[BMO_OP_MAX_SLOTS],
const char * slot_name,
char htype,
char hflag,
bool do_flush )

◆ BMO_slot_buffer_len()

◆ BMO_slot_exists()

bool BMO_slot_exists ( BMOpSlot slot_args[BMO_OP_MAX_SLOTS],
const char * identifier )

BMESH OPSTACK HAS SLOT.

Returns
Success if the slot if found.

Definition at line 202 of file bmesh_operators.cc.

References bmo_name_to_slotcode(), and BMO_OP_MAX_SLOTS.

Referenced by bmesh_find_doubles_common(), and BPy_BMO_call().

◆ BMO_slot_float_get()

◆ BMO_slot_float_set()

void BMO_slot_float_set ( BMOpSlot slot_args[BMO_OP_MAX_SLOTS],
const char * slot_name,
float f )

◆ BMO_slot_get()

BMOpSlot * BMO_slot_get ( BMOpSlot slot_args[BMO_OP_MAX_SLOTS],
const char * identifier )

BMESH OPSTACK GET SLOT.

Returns a pointer to the slot of type 'slot_code'

Definition at line 208 of file bmesh_operators.cc.

References BLI_assert, bmo_name_to_slotcode_check(), BMO_OP_MAX_SLOTS, and UNLIKELY.

Referenced by _bmo_slot_buffer_append(), _bmo_slot_copy(), bm_bridge_splice_loops(), bm_rotate_edges_shared(), bmesh_find_doubles_common(), bmo_bisect_edges_exec(), bmo_collapse_exec(), bmo_connect_vert_pair_exec(), bmo_create_grid_exec(), bmo_dissolve_limit_exec(), bmo_extrude_face_region_exec(), bmo_find_doubles_exec(), BMO_iter_new(), bmo_mesh_copy(), bmo_mirror_exec(), BMO_op_vinitf(), bmo_pointmerge_exec(), bmo_pointmerge_facedata_exec(), bmo_remove_doubles_exec(), BMO_slot_as_arrayN(), BMO_slot_bool_get(), BMO_slot_bool_set(), BMO_slot_buffer_alloc(), BMO_slot_buffer_flag_disable(), BMO_slot_buffer_flag_enable(), BMO_slot_buffer_from_all(), bmo_slot_buffer_from_flag(), bmo_slot_buffer_from_hflag(), BMO_slot_buffer_get_first(), BMO_slot_buffer_hflag_disable(), BMO_slot_buffer_hflag_enable(), BMO_slot_buffer_len(), BMO_slot_float_get(), BMO_slot_float_set(), BMO_slot_int_get(), BMO_slot_int_set(), BMO_slot_map_len(), BMO_slot_map_to_flag(), BMO_slot_mat3_get(), BMO_slot_mat4_get(), BMO_slot_mat_set(), BMO_slot_ptr_get(), BMO_slot_ptr_set(), BMO_slot_vec_get(), BMO_slot_vec_set(), bmo_spin_exec(), bmo_split_exec(), bmo_subdivide_edges_exec(), bmo_symmetrize_exec(), bmo_triangulate_exec(), bmo_unsubdivide_exec(), bmo_weld_verts_exec(), BPy_BMO_call(), collapse_face_corners(), EDBM_automerge_and_split(), edbm_connect_vert_pair(), edbm_extrude_ex(), edbm_fill_grid_split_join_init(), EDBM_op_call_and_selectf(), and skin_fix_hole_no_good_verts().

◆ BMO_slot_int_get()

◆ BMO_slot_int_set()

void BMO_slot_int_set ( BMOpSlot slot_args[BMO_OP_MAX_SLOTS],
const char * slot_name,
int i )

◆ BMO_slot_map_insert()

void BMO_slot_map_insert ( BMOperator * op,
BMOpSlot * slot,
const void * element,
const void * data )

Inserts a key/value mapping into a mapping slot. note that it copies the value, it doesn't store a reference to it.

Definition at line 644 of file bmesh_operators.cc.

References BLI_assert, BLI_ghash_insert(), BMO_ASSERT_SLOT_IN_OP, BMO_OP_SLOT_MAPPING, BMOpSlot::data, data, element, BMOpSlot::ghash, and BMOpSlot::slot_type.

Referenced by BMO_slot_map_bool_insert(), BMO_slot_map_elem_insert(), BMO_slot_map_empty_insert(), BMO_slot_map_float_insert(), BMO_slot_map_int_insert(), and BMO_slot_map_ptr_insert().

◆ BMO_slot_map_len()

int BMO_slot_map_len ( BMOpSlot slot_args[BMO_OP_MAX_SLOTS],
const char * slot_name )

Return the number of elements inside a slot map.

Definition at line 637 of file bmesh_operators.cc.

References BLI_assert, BLI_ghash_len(), BMO_OP_MAX_SLOTS, BMO_OP_SLOT_MAPPING, BMO_slot_get(), BMOpSlot::data, BMOpSlot::ghash, and BMOpSlot::slot_type.

Referenced by bmo_extrude_face_region_exec().

◆ BMO_slot_map_to_flag()

void BMO_slot_map_to_flag ( BMesh * bm,
BMOpSlot slot_args[BMO_OP_MAX_SLOTS],
const char * slot_name,
char htype,
short oflag )

Flags all elements in a mapping.

Note
that the mapping must only have BMesh elements in it.

Definition at line 696 of file bmesh_operators.cc.

References BLI_assert, BLI_ghashIterator_getKey(), bm, BMO_elem_flag_enable, BMO_OP_MAX_SLOTS, BMO_OP_SLOT_MAPPING, BMO_slot_get(), BMOpSlot::data, BMOpSlot::ghash, GHASH_ITER, BMElemF::head, BMHeader::htype, oflag, and BMOpSlot::slot_type.

Referenced by bmo_bisect_edges_exec(), and bmo_subdivide_edges_exec().

◆ BMO_slot_mat3_get()

void BMO_slot_mat3_get ( BMOpSlot slot_args[BMO_OP_MAX_SLOTS],
const char * slot_name,
float r_mat[3][3] )

◆ BMO_slot_mat4_get()

◆ BMO_slot_mat_set()

void BMO_slot_mat_set ( BMOperator * op,
BMOpSlot slot_args[BMO_OP_MAX_SLOTS],
const char * slot_name,
const float * mat,
int size )

Only supports square matrices. size must be 3 or 4; this API is meant only for transformation matrices.

Note
the matrix is stored in 4x4 form, and it's safe to call whichever function you want.

Definition at line 343 of file bmesh_operators.cc.

References BMOperator::arena, BLI_assert, BLI_memarena_alloc(), BMO_OP_MAX_SLOTS, BMO_OP_SLOT_MAT, BMO_slot_get(), copy_m4_m3(), copy_m4_m4(), BMOpSlot::data, float, BMOpSlot::len, BMOpSlot::p, size(), BMOpSlot::slot_type, and zero_m4().

Referenced by BMO_op_vinitf(), and bpy_slot_from_py().

◆ BMO_slot_ptr_get()

void * BMO_slot_ptr_get ( BMOpSlot slot_args[BMO_OP_MAX_SLOTS],
const char * slot_name )

◆ BMO_slot_ptr_set()

void BMO_slot_ptr_set ( BMOpSlot slot_args[BMO_OP_MAX_SLOTS],
const char * slot_name,
void * p )

Don't pass in arrays that are supposed to map to elements this way.

so, e.g. passing in list of floats per element in another slot is bad. passing in, e.g. pointer to an edit-mesh for the conversion operator is fine though.

Definition at line 407 of file bmesh_operators.cc.

References BLI_assert, BMO_OP_MAX_SLOTS, BMO_OP_SLOT_PTR, BMO_slot_get(), BMOpSlot::data, BMOpSlot::p, and BMOpSlot::slot_type.

Referenced by BMO_op_vinitf().

◆ BMO_slot_vec_get()

◆ BMO_slot_vec_set()

void BMO_slot_vec_set ( BMOpSlot slot_args[BMO_OP_MAX_SLOTS],
const char * slot_name,
const float vec[3] )

Variable Documentation

◆ BMO_OPSLOT_TYPEINFO

const int BMO_OPSLOT_TYPEINFO[BMO_OP_SLOT_TOTAL_TYPES]
extern