Changeset View
Changeset View
Standalone View
Standalone View
source/blender/bmesh/intern/bmesh_mods.h
| Show First 20 Lines • Show All 45 Lines • ▼ Show 20 Lines | BMFace *BM_face_split_n(BMesh *bm, | ||||
| BMEdge *example); | BMEdge *example); | ||||
| BMEdge *BM_vert_collapse_faces(BMesh *bm, | BMEdge *BM_vert_collapse_faces(BMesh *bm, | ||||
| BMEdge *e_kill, | BMEdge *e_kill, | ||||
| BMVert *v_kill, | BMVert *v_kill, | ||||
| float fac, | float fac, | ||||
| const bool do_del, | const bool do_del, | ||||
| const bool join_faces, | const bool join_faces, | ||||
| const bool kill_degenerate_faces); | const bool kill_degenerate_faces, | ||||
| const bool kill_duplicate_faces); | |||||
| BMEdge *BM_vert_collapse_edge(BMesh *bm, | BMEdge *BM_vert_collapse_edge(BMesh *bm, | ||||
| BMEdge *e_kill, | BMEdge *e_kill, | ||||
| BMVert *v_kill, | BMVert *v_kill, | ||||
| const bool do_del, | const bool do_del, | ||||
| const bool kill_degenerate_faces); | const bool kill_degenerate_faces, | ||||
| const bool kill_duplicate_faces); | |||||
| BMVert *BM_edge_collapse(BMesh *bm, | BMVert *BM_edge_collapse(BMesh *bm, | ||||
| BMEdge *e_kill, | BMEdge *e_kill, | ||||
| BMVert *v_kill, | BMVert *v_kill, | ||||
| const bool do_del, | const bool do_del, | ||||
| const bool kill_degenerate_faces); | const bool kill_degenerate_faces); | ||||
| BMVert *BM_edge_split(BMesh *bm, BMEdge *e, BMVert *v, BMEdge **r_e, float fac); | BMVert *BM_edge_split(BMesh *bm, BMEdge *e, BMVert *v, BMEdge **r_e, float fac); | ||||
| Show All 28 Lines | |||||