Blender  V3.3
mesh_intern.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later
2  * Copyright 2001-2002 NaN Holding BV. All rights reserved. */
3 
8 /* Internal for editmesh_xxxx.c functions */
9 
10 #pragma once
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 struct BMEditMesh;
17 struct BMElem;
18 struct BMOperator;
19 struct EnumPropertyItem;
20 struct LinkNode;
21 struct Object;
22 struct bContext;
23 struct wmKeyConfig;
24 struct wmKeyMap;
25 struct wmOperator;
26 struct wmOperatorType;
27 
28 /* *** editmesh_utils.c *** */
29 
30 /*
31  * ok: the EDBM module is for editmode bmesh stuff. in contrast, the
32  * BMEdit module is for code shared with blenkernel that concerns
33  * the BMEditMesh structure. */
34 
36 bool EDBM_op_callf(struct BMEditMesh *em, struct wmOperator *op, const char *fmt, ...);
37 bool EDBM_op_call_and_selectf(struct BMEditMesh *em,
38  struct wmOperator *op,
39  const char *select_slot,
40  bool select_replace,
41  const char *fmt,
42  ...);
46 bool EDBM_op_call_silentf(struct BMEditMesh *em, const char *fmt, ...);
47 
53 bool EDBM_op_init(
54  struct BMEditMesh *em, struct BMOperator *bmop, struct wmOperator *op, const char *fmt, ...);
55 
63 bool EDBM_op_finish(struct BMEditMesh *em,
64  struct BMOperator *bmop,
65  struct wmOperator *op,
66  bool do_report);
67 
68 void EDBM_stats_update(struct BMEditMesh *em);
69 
73 bool EDBM_view3d_poll(struct bContext *C);
74 
76  struct BMVert *eve,
77  struct BMEdge *eed,
78  struct BMFace *efa);
79 
85 int EDBM_elem_to_index_any(struct BMEditMesh *em, struct BMElem *ele);
86 struct BMElem *EDBM_elem_from_index_any(struct BMEditMesh *em, uint index);
87 
88 int EDBM_elem_to_index_any_multi(struct ViewLayer *view_layer,
89  struct BMEditMesh *em,
90  struct BMElem *ele,
91  int *r_object_index);
92 struct BMElem *EDBM_elem_from_index_any_multi(struct ViewLayer *view_layer,
93  uint object_index,
94  uint elem_index,
95  struct Object **r_obedit);
96 
100 bool edbm_extrude_edges_indiv(struct BMEditMesh *em,
101  struct wmOperator *op,
102  char hflag,
103  bool use_normal_flip);
104 
105 /* *** editmesh_add.c *** */
106 
116 
117 /* *** editmesh_add_gizmo.c *** */
118 
120 
121 /* *** editmesh_bevel.c *** */
122 
123 void MESH_OT_bevel(struct wmOperatorType *ot);
124 struct wmKeyMap *bevel_modal_keymap(struct wmKeyConfig *keyconf);
125 
126 /* *** editmesh_bisect.c *** */
127 
128 void MESH_OT_bisect(struct wmOperatorType *ot);
129 
130 /* *** editmesh_extrude.c *** */
131 
139 
140 /* *** editmesh_extrude_screw.c *** */
141 
142 void MESH_OT_screw(struct wmOperatorType *ot);
143 
144 /* *** editmesh_extrude_spin.c *** */
145 
146 void MESH_OT_spin(struct wmOperatorType *ot);
147 
148 /* *** editmesh_extrude_spin_gizmo.c *** */
149 
150 void MESH_GGT_spin(struct wmGizmoGroupType *gzgt);
151 void MESH_GGT_spin_redo(struct wmGizmoGroupType *gzgt);
152 
153 /* *** editmesh_polybuild.c *** */
154 
160 
161 /* *** editmesh_inset.c *** */
162 
163 void MESH_OT_inset(struct wmOperatorType *ot);
164 
165 /* *** editmesh_intersect.c *** */
166 
167 void MESH_OT_intersect(struct wmOperatorType *ot);
170 
171 /* *** editmesh_knife.c *** */
172 
173 void MESH_OT_knife_tool(struct wmOperatorType *ot);
178 void EDBM_mesh_knife(struct ViewContext *vc,
179  struct Object **objects,
180  int objects_len,
181  struct LinkNode *polys,
182  bool use_tag,
183  bool cut_through);
184 
185 struct wmKeyMap *knifetool_modal_keymap(struct wmKeyConfig *keyconf);
186 
187 /* *** editmesh_loopcut.c *** */
188 
189 void MESH_OT_loopcut(struct wmOperatorType *ot);
190 
191 /* *** editmesh_rip.c *** */
192 
193 void MESH_OT_rip(struct wmOperatorType *ot);
194 void MESH_OT_rip_edge(struct wmOperatorType *ot);
195 
196 /* *** editmesh_select.c *** */
197 
204 void MESH_OT_select_all(struct wmOperatorType *ot);
214 void MESH_OT_select_nth(struct wmOperatorType *ot);
224 
225 extern struct EnumPropertyItem *corner_type_items;
226 
227 /* *** editmesh_tools.c *** */
228 void MESH_OT_subdivide(struct wmOperatorType *ot);
239 void MESH_OT_edge_split(struct wmOperatorType *ot);
242 void MESH_OT_wireframe(struct wmOperatorType *ot);
244 void MESH_OT_symmetrize(struct wmOperatorType *ot);
249 void MESH_OT_uvs_rotate(struct wmOperatorType *ot);
253 void MESH_OT_delete(struct wmOperatorType *ot);
258 void MESH_OT_split(struct wmOperatorType *ot);
260 void MESH_OT_hide(struct wmOperatorType *ot);
261 void MESH_OT_reveal(struct wmOperatorType *ot);
262 void MESH_OT_mark_seam(struct wmOperatorType *ot);
263 void MESH_OT_mark_sharp(struct wmOperatorType *ot);
265 void MESH_OT_solidify(struct wmOperatorType *ot);
266 void MESH_OT_knife_cut(struct wmOperatorType *ot);
267 void MESH_OT_separate(struct wmOperatorType *ot);
268 void MESH_OT_fill(struct wmOperatorType *ot);
269 void MESH_OT_fill_grid(struct wmOperatorType *ot);
270 void MESH_OT_fill_holes(struct wmOperatorType *ot);
274 void MESH_OT_decimate(struct wmOperatorType *ot);
283 void MESH_OT_duplicate(struct wmOperatorType *ot);
284 void MESH_OT_merge(struct wmOperatorType *ot);
286 void MESH_OT_poke(struct wmOperatorType *ot);
295 
296 /* *** editmesh_mask_extract.c *** */
297 
301 
304 
305 #if defined(WITH_FREESTYLE)
306 void MESH_OT_mark_freestyle_edge(struct wmOperatorType *ot);
307 void MESH_OT_mark_freestyle_face(struct wmOperatorType *ot);
308 #endif
309 
310 /* *** mesh_data.cc *** */
311 
323 
324 #ifdef __cplusplus
325 }
326 #endif
unsigned int uint
Definition: BLI_sys_types.h:67
#define C
Definition: RandGen.cpp:25
void MESH_OT_intersect_boolean(struct wmOperatorType *ot)
void MESH_OT_loop_multi_select(struct wmOperatorType *ot)
void MESH_OT_edges_select_sharp(struct wmOperatorType *ot)
void MESH_OT_paint_mask_extract(struct wmOperatorType *ot)
void MESH_OT_dissolve_degenerate(struct wmOperatorType *ot)
void MESH_OT_bisect(struct wmOperatorType *ot)
void MESH_OT_delete_loose(struct wmOperatorType *ot)
void MESH_OT_dissolve_edges(struct wmOperatorType *ot)
bool EDBM_op_init(struct BMEditMesh *em, struct BMOperator *bmop, struct wmOperator *op, const char *fmt,...)
void MESH_OT_customdata_mask_clear(struct wmOperatorType *ot)
Definition: mesh_data.cc:892
bool EDBM_op_call_and_selectf(struct BMEditMesh *em, struct wmOperator *op, const char *select_slot, bool select_replace, const char *fmt,...)
void MESH_OT_bridge_edge_loops(struct wmOperatorType *ot)
void MESH_OT_fill_holes(struct wmOperatorType *ot)
void MESH_OT_uv_texture_add(struct wmOperatorType *ot)
Definition: mesh_data.cc:652
void MESH_OT_primitive_circle_add(struct wmOperatorType *ot)
Definition: editmesh_add.c:278
void MESH_OT_quads_convert_to_tris(struct wmOperatorType *ot)
void MESH_OT_primitive_plane_add(struct wmOperatorType *ot)
Definition: editmesh_add.c:138
void MESH_OT_blend_from_shape(struct wmOperatorType *ot)
void MESH_OT_edge_split(struct wmOperatorType *ot)
void MESH_OT_select_linked(struct wmOperatorType *ot)
void MESH_OT_loop_select(struct wmOperatorType *ot)
struct BMElem * EDBM_elem_from_index_any_multi(struct ViewLayer *view_layer, uint object_index, uint elem_index, struct Object **r_obedit)
void MESH_OT_rip_edge(struct wmOperatorType *ot)
void MESH_OT_customdata_skin_clear(struct wmOperatorType *ot)
Definition: mesh_data.cc:970
void MESH_OT_select_similar_region(struct wmOperatorType *ot)
void MESH_OT_subdivide_edgering(struct wmOperatorType *ot)
void MESH_OT_faces_shade_smooth(struct wmOperatorType *ot)
void MESH_OT_polybuild_dissolve_at_cursor(struct wmOperatorType *ot)
void MESH_OT_extrude_edges_indiv(struct wmOperatorType *ot)
void MESH_OT_select_ungrouped(struct wmOperatorType *ot)
void MESH_OT_sculpt_vertex_color_remove(struct wmOperatorType *ot)
Definition: mesh_data.cc:814
struct BMElem * EDBM_elem_from_index_any(struct BMEditMesh *em, uint index)
void MESH_OT_uvs_rotate(struct wmOperatorType *ot)
void MESH_OT_spin(struct wmOperatorType *ot)
void MESH_OT_mark_sharp(struct wmOperatorType *ot)
void MESH_OT_primitive_cylinder_add(struct wmOperatorType *ot)
Definition: editmesh_add.c:352
void MESH_OT_fill(struct wmOperatorType *ot)
bool EDBM_op_call_silentf(struct BMEditMesh *em, const char *fmt,...)
void MESH_OT_polybuild_delete_at_cursor(struct wmOperatorType *ot)
void MESH_OT_face_set_extract(struct wmOperatorType *ot)
void MESH_OT_select_more(struct wmOperatorType *ot)
void MESH_OT_polybuild_face_at_cursor(struct wmOperatorType *ot)
void MESH_OT_point_normals(struct wmOperatorType *ot)
bool EDBM_view3d_poll(struct bContext *C)
void MESH_OT_edge_face_add(struct wmOperatorType *ot)
void MESH_OT_select_random(struct wmOperatorType *ot)
void MESH_OT_unsubdivide(struct wmOperatorType *ot)
void MESH_OT_select_mode(struct wmOperatorType *ot)
void MESH_OT_split(struct wmOperatorType *ot)
void MESH_OT_duplicate(struct wmOperatorType *ot)
void MESH_OT_select_linked_pick(struct wmOperatorType *ot)
void MESH_OT_vert_connect(struct wmOperatorType *ot)
void MESH_OT_decimate(struct wmOperatorType *ot)
void MESH_OT_colors_rotate(struct wmOperatorType *ot)
void MESH_OT_dissolve_verts(struct wmOperatorType *ot)
void MESH_OT_separate(struct wmOperatorType *ot)
void MESH_OT_shortest_path_pick(struct wmOperatorType *ot)
int EDBM_elem_to_index_any_multi(struct ViewLayer *view_layer, struct BMEditMesh *em, struct BMElem *ele, int *r_object_index)
void MESH_OT_extrude_repeat(struct wmOperatorType *ot)
int EDBM_elem_to_index_any(struct BMEditMesh *em, struct BMElem *ele)
void MESH_OT_reveal(struct wmOperatorType *ot)
void MESH_OT_knife_cut(struct wmOperatorType *ot)
void MESH_OT_region_to_loop(struct wmOperatorType *ot)
void MESH_OT_edgering_select(struct wmOperatorType *ot)
void MESH_OT_select_axis(struct wmOperatorType *ot)
void MESH_OT_customdata_skin_add(struct wmOperatorType *ot)
Definition: mesh_data.cc:945
void MESH_OT_extrude_verts_indiv(struct wmOperatorType *ot)
void MESH_OT_polybuild_split_at_cursor(struct wmOperatorType *ot)
void MESH_OT_select_less(struct wmOperatorType *ot)
void MESH_OT_dissolve_limited(struct wmOperatorType *ot)
void MESH_OT_knife_tool(struct wmOperatorType *ot)
void MESH_OT_primitive_cone_add(struct wmOperatorType *ot)
Definition: editmesh_add.c:428
void MESH_OT_shape_propagate_to_all(struct wmOperatorType *ot)
void MESH_OT_dupli_extrude_cursor(struct wmOperatorType *ot)
void MESH_OT_vert_connect_nonplanar(struct wmOperatorType *ot)
void MESH_OT_merge_normals(struct wmOperatorType *ot)
void MESH_OT_screw(struct wmOperatorType *ot)
void MESH_OT_sculpt_vertex_color_add(struct wmOperatorType *ot)
Definition: mesh_data.cc:787
void MESH_OT_primitive_cube_add(struct wmOperatorType *ot)
Definition: editmesh_add.c:201
void MESH_OT_delete(struct wmOperatorType *ot)
void MESH_OT_merge(struct wmOperatorType *ot)
bool EDBM_op_callf(struct BMEditMesh *em, struct wmOperator *op, const char *fmt,...)
void MESH_OT_inset(struct wmOperatorType *ot)
void MESH_OT_uvs_reverse(struct wmOperatorType *ot)
struct wmKeyMap * knifetool_modal_keymap(struct wmKeyConfig *keyconf)
void MESH_OT_loop_to_region(struct wmOperatorType *ot)
void MESH_OT_select_non_manifold(struct wmOperatorType *ot)
void MESH_OT_vertices_smooth_laplacian(struct wmOperatorType *ot)
void MESH_OT_vertices_smooth(struct wmOperatorType *ot)
void MESH_OT_primitive_ico_sphere_add(struct wmOperatorType *ot)
Definition: editmesh_add.c:706
void MESH_OT_vertex_color_remove(struct wmOperatorType *ot)
Definition: mesh_data.cc:758
struct BMElem * EDBM_elem_from_selectmode(struct BMEditMesh *em, struct BMVert *eve, struct BMEdge *eed, struct BMFace *efa)
void MESH_OT_select_nth(struct wmOperatorType *ot)
void MESH_OT_uv_texture_remove(struct wmOperatorType *ot)
Definition: mesh_data.cc:685
void MESH_GGT_spin(struct wmGizmoGroupType *gzgt)
void MESH_OT_face_split_by_edges(struct wmOperatorType *ot)
void MESH_OT_select_interior_faces(struct wmOperatorType *ot)
void MESH_OT_colors_reverse(struct wmOperatorType *ot)
void MESH_OT_loopcut(struct wmOperatorType *ot)
void MESH_OT_tris_convert_to_quads(struct wmOperatorType *ot)
void MESH_OT_vert_connect_path(struct wmOperatorType *ot)
void MESH_OT_customdata_custom_splitnormals_clear(struct wmOperatorType *ot)
Definition: mesh_data.cc:1058
bool EDBM_op_finish(struct BMEditMesh *em, struct BMOperator *bmop, struct wmOperator *op, bool do_report)
void MESH_OT_mark_seam(struct wmOperatorType *ot)
void EDBM_mesh_knife(struct ViewContext *vc, struct Object **objects, int objects_len, struct LinkNode *polys, bool use_tag, bool cut_through)
void MESH_OT_symmetry_snap(struct wmOperatorType *ot)
void MESH_OT_rip(struct wmOperatorType *ot)
void MESH_GGT_spin_redo(struct wmGizmoGroupType *gzgt)
void MESH_OT_remove_doubles(struct wmOperatorType *ot)
void MESH_OT_beautify_fill(struct wmOperatorType *ot)
void MESH_OT_intersect(struct wmOperatorType *ot)
void MESH_OT_primitive_cube_add_gizmo(struct wmOperatorType *ot)
void EDBM_stats_update(struct BMEditMesh *em)
void MESH_OT_normals_make_consistent(struct wmOperatorType *ot)
void MESH_OT_extrude_faces_indiv(struct wmOperatorType *ot)
void MESH_OT_hide(struct wmOperatorType *ot)
void MESH_OT_subdivide(struct wmOperatorType *ot)
void MESH_OT_extrude_region(struct wmOperatorType *ot)
void MESH_OT_edge_collapse(struct wmOperatorType *ot)
void MESH_OT_face_make_planar(struct wmOperatorType *ot)
void MESH_OT_edge_rotate(struct wmOperatorType *ot)
void MESH_OT_normals_tools(struct wmOperatorType *ot)
void MESH_OT_dissolve_faces(struct wmOperatorType *ot)
void MESH_OT_mod_weighted_strength(struct wmOperatorType *ot)
struct wmKeyMap * bevel_modal_keymap(struct wmKeyConfig *keyconf)
void MESH_OT_smooth_normals(struct wmOperatorType *ot)
void MESH_OT_paint_mask_slice(struct wmOperatorType *ot)
void MESH_OT_flip_normals(struct wmOperatorType *ot)
struct wmKeyMap * point_normals_modal_keymap(wmKeyConfig *keyconf)
void MESH_OT_extrude_context(struct wmOperatorType *ot)
void MESH_OT_select_face_by_sides(struct wmOperatorType *ot)
void MESH_OT_bevel(struct wmOperatorType *ot)
void MESH_OT_symmetrize(struct wmOperatorType *ot)
void MESH_OT_polybuild_transform_at_cursor(struct wmOperatorType *ot)
void MESH_OT_primitive_uv_sphere_add(struct wmOperatorType *ot)
Definition: editmesh_add.c:639
void MESH_OT_faces_select_linked_flat(struct wmOperatorType *ot)
void MESH_OT_wireframe(struct wmOperatorType *ot)
void MESH_OT_faces_shade_flat(struct wmOperatorType *ot)
bool edbm_extrude_edges_indiv(struct BMEditMesh *em, struct wmOperator *op, char hflag, bool use_normal_flip)
void MESH_OT_solidify(struct wmOperatorType *ot)
struct EnumPropertyItem * corner_type_items
void MESH_OT_split_normals(struct wmOperatorType *ot)
void MESH_OT_set_normals_from_faces(struct wmOperatorType *ot)
void MESH_OT_vert_connect_concave(struct wmOperatorType *ot)
void MESH_OT_fill_grid(struct wmOperatorType *ot)
void MESH_OT_customdata_custom_splitnormals_add(struct wmOperatorType *ot)
Definition: mesh_data.cc:1029
void MESH_OT_vertex_color_add(struct wmOperatorType *ot)
Definition: mesh_data.cc:731
void MESH_OT_select_loose(struct wmOperatorType *ot)
void MESH_OT_primitive_grid_add(struct wmOperatorType *ot)
Definition: editmesh_add.c:501
void MESH_OT_sort_elements(struct wmOperatorType *ot)
void MESH_OT_knife_project(struct wmOperatorType *ot)
void MESH_OT_offset_edge_loops(struct wmOperatorType *ot)
void MESH_OT_select_all(struct wmOperatorType *ot)
void MESH_OT_select_mirror(struct wmOperatorType *ot)
void MESH_OT_select_similar(struct wmOperatorType *ot)
void MESH_OT_primitive_monkey_add(struct wmOperatorType *ot)
Definition: editmesh_add.c:574
void MESH_OT_dissolve_mode(struct wmOperatorType *ot)
void MESH_OT_convex_hull(struct wmOperatorType *ot)
void MESH_OT_shortest_path_select(struct wmOperatorType *ot)
void MESH_OT_delete_edgeloop(struct wmOperatorType *ot)
void MESH_OT_average_normals(struct wmOperatorType *ot)
void MESH_OT_poke(struct wmOperatorType *ot)
wmOperatorType * ot
Definition: wm_files.c:3479