Changeset View
Changeset View
Standalone View
Standalone View
source/blender/bmesh/intern/bmesh_construct.h
| Show First 20 Lines • Show All 164 Lines • ▼ Show 20 Lines | |||||
| * \param allocsize: Initialize the memory-pool before use (may be an estimate). | * \param allocsize: Initialize the memory-pool before use (may be an estimate). | ||||
| */ | */ | ||||
| void BM_mesh_copy_init_customdata_all_layers(BMesh *bm_dst, | void BM_mesh_copy_init_customdata_all_layers(BMesh *bm_dst, | ||||
| BMesh *bm_src, | BMesh *bm_src, | ||||
| char htype, | char htype, | ||||
| const struct BMAllocTemplate *allocsize); | const struct BMAllocTemplate *allocsize); | ||||
| BMesh *BM_mesh_copy(BMesh *bm_old); | BMesh *BM_mesh_copy(BMesh *bm_old); | ||||
| char BM_face_flag_from_mflag(char mflag); | |||||
| char BM_edge_flag_from_mflag(short mflag); | |||||
| /* ME -> BM */ | |||||
| char BM_face_flag_to_mflag(BMFace *f); | |||||
| short BM_edge_flag_to_mflag(BMEdge *e); | |||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| } | } | ||||
| #endif | #endif | ||||