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>2016-04-01 15:27:31 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-04-01 15:36:06 +0300
commitc6b27dd4fa02b2609a18ce3aa9c71b64e12b500d (patch)
tree3f6ba288e59f714c08331297b0d54dc0b8ad9e93 /source/blender/bmesh/tools/bmesh_path.h
parentae49f2ed99b650669541daf056e979c28dc7c73b (diff)
BMesh: improve path-select fill region w/ ngons
Rewrote to work with ngons and and more complex topology, now uses separate function. Fixes T48009.
Diffstat (limited to 'source/blender/bmesh/tools/bmesh_path.h')
-rw-r--r--source/blender/bmesh/tools/bmesh_path.h4
1 files changed, 1 insertions, 3 deletions
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__ */