Cleanup: Move five mesh related files to C++

To faciliate further mesh data structure refactoring. See #103343.

Pull Request #105354
This commit is contained in:
2023-03-02 23:14:33 +01:00
committed by Hans Goudey
parent 15375b0845
commit 118ec54ec7
17 changed files with 1214 additions and 1201 deletions

View File

@@ -7,6 +7,10 @@
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
extern PyTypeObject BPy_BMesh_Type;
extern PyTypeObject BPy_BMVert_Type;
extern PyTypeObject BPy_BMEdge_Type;
@@ -233,3 +237,7 @@ extern struct PyC_FlagSet bpy_bm_htype_vert_edge_face_flags[];
extern struct PyC_FlagSet bpy_bm_htype_all_flags[];
extern struct PyC_FlagSet bpy_bm_hflag_all_flags[];
#endif
#ifdef __cplusplus
}
#endif