Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2015-12-24 11:51:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-12-24 12:30:02 +0300
commit4a356d767b3a3481c836e0a5b4e5c56a6f92efc2 (patch)
tree6b3b7288dc681d36537acf428cfc3aa0db972553 /source/blender/bmesh/intern/bmesh_construct.h
parentc8c7d04d69d62f6c220af8ec5a401a17c6082295 (diff)
BMesh: BM_verts_from_edges utility function
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_construct.h')
-rw-r--r--source/blender/bmesh/intern/bmesh_construct.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/bmesh/intern/bmesh_construct.h b/source/blender/bmesh/intern/bmesh_construct.h
index ce8b8dd8391..06bc5465a19 100644
--- a/source/blender/bmesh/intern/bmesh_construct.h
+++ b/source/blender/bmesh/intern/bmesh_construct.h
@@ -29,6 +29,8 @@
struct BMAllocTemplate;
+bool BM_verts_from_edges(BMVert **vert_arr, BMEdge **edge_arr, const int len);
+
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);