2012-02-28 18:28:30 +00:00
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __BMESH_CONSTRUCT_H__
|
|
|
|
#define __BMESH_CONSTRUCT_H__
|
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
* \ingroup bmesh
|
2012-02-28 18:28:30 +00:00
|
|
|
*/
|
|
|
|
|
2013-07-11 04:24:36 +00:00
|
|
|
struct BMAllocTemplate;
|
|
|
|
|
2015-12-24 19:51:41 +11:00
|
|
|
bool BM_verts_from_edges(BMVert **vert_arr, BMEdge **edge_arr, const int len);
|
|
|
|
|
2015-05-28 11:45:53 +10:00
|
|
|
bool BM_edges_from_verts(BMEdge **edge_arr, BMVert **vert_arr, const int len);
|
|
|
|
void BM_edges_from_verts_ensure(BMesh *bm, BMEdge **edge_arr, BMVert **vert_arr, const int len);
|
|
|
|
|
2017-01-20 06:06:06 +11:00
|
|
|
/* sort before creation */
|
2019-04-17 06:17:24 +02:00
|
|
|
void BM_verts_sort_radial_plane(BMVert **vert_arr, int len);
|
2017-01-20 06:06:06 +11:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
BMFace *BM_face_create_quad_tri(BMesh *bm,
|
|
|
|
BMVert *v1,
|
|
|
|
BMVert *v2,
|
|
|
|
BMVert *v3,
|
|
|
|
BMVert *v4,
|
|
|
|
const BMFace *f_example,
|
|
|
|
const eBMCreateFlag create_flag);
|
2012-02-28 18:28:30 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
void BM_face_copy_shared(BMesh *bm, BMFace *f, BMLoopFilterFunc filter_fn, void *user_data);
|
2012-02-28 18:28:30 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
BMFace *BM_face_create_ngon(BMesh *bm,
|
|
|
|
BMVert *v1,
|
|
|
|
BMVert *v2,
|
|
|
|
BMEdge **edges,
|
|
|
|
const int len,
|
|
|
|
const BMFace *f_example,
|
|
|
|
const eBMCreateFlag create_flag);
|
|
|
|
BMFace *BM_face_create_ngon_verts(BMesh *bm,
|
|
|
|
BMVert **vert_arr,
|
|
|
|
const int len,
|
|
|
|
const BMFace *f_example,
|
|
|
|
const eBMCreateFlag create_flag,
|
|
|
|
const bool calc_winding,
|
|
|
|
const bool create_edges);
|
2012-02-28 18:28:30 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
void BM_elem_attrs_copy_ex(BMesh *bm_src,
|
|
|
|
BMesh *bm_dst,
|
|
|
|
const void *ele_src_v,
|
|
|
|
void *ele_dst_v,
|
|
|
|
const char hflag_mask,
|
2019-11-26 16:19:56 +11:00
|
|
|
const uint64_t cd_mask_exclude);
|
2013-07-11 12:43:34 +00:00
|
|
|
void BM_elem_attrs_copy(BMesh *bm_src, BMesh *bm_dst, const void *ele_src_v, void *ele_dst_v);
|
2016-11-14 14:21:15 +11:00
|
|
|
void BM_elem_select_copy(BMesh *bm_dst, void *ele_dst_v, const void *ele_src_v);
|
2012-02-28 18:28:30 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
void BM_mesh_copy_init_customdata(BMesh *bm_dst,
|
|
|
|
BMesh *bm_src,
|
|
|
|
const struct BMAllocTemplate *allocsize);
|
2012-03-01 22:17:04 +00:00
|
|
|
BMesh *BM_mesh_copy(BMesh *bm_old);
|
2012-02-28 18:28:30 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
char BM_face_flag_from_mflag(const char mflag);
|
|
|
|
char BM_edge_flag_from_mflag(const short mflag);
|
|
|
|
char BM_vert_flag_from_mflag(const char mflag);
|
|
|
|
char BM_face_flag_to_mflag(BMFace *f);
|
2012-02-28 18:28:30 +00:00
|
|
|
short BM_edge_flag_to_mflag(BMEdge *e);
|
2019-04-17 06:17:24 +02:00
|
|
|
char BM_vert_flag_to_mflag(BMVert *v);
|
2012-02-28 18:28:30 +00:00
|
|
|
|
|
|
|
#endif /* __BMESH_CONSTRUCT_H__ */
|