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>2013-05-12 14:00:15 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-05-12 14:00:15 +0400
commitf87464392c5cc270381d1c8d358abd525df53e9a (patch)
treebd72c8ccf2bdbd36a93f2cb8216b0c53c1bd2a70 /source/blender/bmesh/intern/bmesh_edgeloop.h
parent877e0e1184230c320cf61d10873cbf1c0ed31072 (diff)
bridge option to bridge loop pairs,
change the operator option to an enum: Connect Loops - open/closed/pairs because it was getting confusing having all as bools.
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_edgeloop.h')
-rw-r--r--source/blender/bmesh/intern/bmesh_edgeloop.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/intern/bmesh_edgeloop.h b/source/blender/bmesh/intern/bmesh_edgeloop.h
index b569f0cf4ce..c8cd6943af9 100644
--- a/source/blender/bmesh/intern/bmesh_edgeloop.h
+++ b/source/blender/bmesh/intern/bmesh_edgeloop.h
@@ -38,7 +38,7 @@ int BM_mesh_edgeloops_find(BMesh *bm, struct ListBase *r_lb,
void BM_mesh_edgeloops_free(struct ListBase *eloops);
void BM_mesh_edgeloops_calc_center(BMesh *bm, struct ListBase *eloops);
void BM_mesh_edgeloops_calc_normal(BMesh *bm, struct ListBase *eloops);
-void BM_mesh_edgeloops_calc_order(BMesh *UNUSED(bm), ListBase *eloops);
+void BM_mesh_edgeloops_calc_order(BMesh *UNUSED(bm), ListBase *eloops, const bool use_normals);
/* single edgeloop */