From c6b27dd4fa02b2609a18ce3aa9c71b64e12b500d Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 1 Apr 2016 23:27:31 +1100 Subject: BMesh: improve path-select fill region w/ ngons Rewrote to work with ngons and and more complex topology, now uses separate function. Fixes T48009. --- source/blender/bmesh/tools/bmesh_path.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'source/blender/bmesh/tools/bmesh_path.h') diff --git a/source/blender/bmesh/tools/bmesh_path.h b/source/blender/bmesh/tools/bmesh_path.h index 9df1568f750..b6de5e0e4e0 100644 --- a/source/blender/bmesh/tools/bmesh_path.h +++ b/source/blender/bmesh/tools/bmesh_path.h @@ -30,8 +30,6 @@ struct BMCalcPathParams { unsigned int use_topology_distance : 1; unsigned int use_step_face : 1; - /* return all paths (no longer ordered) */ - unsigned int use_fill : 1; }; struct LinkNode *BM_mesh_calc_path_vert( @@ -46,7 +44,7 @@ ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(1, 2, 3, 5); struct LinkNode *BM_mesh_calc_path_face( BMesh *bm, BMFace *f_src, BMFace *f_dst, const struct BMCalcPathParams *params, - bool (*test_fn)(BMFace *, void *), void *user_data) + bool (*filter_fn)(BMFace *, void *), void *user_data) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(1, 2, 3, 5); #endif /* __BMESH_PATH_H__ */ -- cgit v1.2.3